Skip to content

Commit

Permalink
ooga booga
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Nov 23, 2024
1 parent 63bcc6f commit 48aa99d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ on:
jobs:
changed:
runs-on: ubuntu-22.04

# Required permissions
permissions:
pull-requests: read
# Set job outputs to values from filter step
outputs:
docs: ${{ steps.filter.outputs.docs == 'true' || steps.filter.outputs.workflow == 'true' }}
code: ${{ steps.filter.outputs.code == 'true' || steps.filter.outputs.workflow == 'true' }}

steps:
- uses: actions/checkout@v4
if: github.event_name != 'pull_request'
- name: Check for file changes
uses: dorny/paths-filter@v2
id: filter
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/photon-code-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
docs: ${{ steps.filter.outputs.docs == 'true' || steps.filter.outputs.workflow == 'true' }}
code: ${{ steps.filter.outputs.code == 'true' || steps.filter.outputs.workflow == 'true' }}
steps:
- uses: actions/checkout@v4
if: github.event_name != 'pull_request'
- name: Check for file changes
uses: dorny/paths-filter@v2
id: filter
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/photonvision-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
docs: ${{ steps.filter.outputs.docs == 'true' || steps.filter.outputs.workflow == 'true' }}
code: ${{ steps.filter.outputs.code == 'true' || steps.filter.outputs.workflow == 'true' }}
steps:
- uses: actions/checkout@v4
if: github.event_name != 'pull_request'
- name: Check for file changes
uses: dorny/paths-filter@v2
id: filter
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
outputs:
py: ${{ steps.filter.outputs.python == 'true' || steps.filter.outputs.workflow == 'true' }}
steps:
- uses: actions/checkout@v4
if: github.event_name != 'pull_request'
- name: Check for file changes
uses: dorny/paths-filter@v2
id: filter
Expand Down

0 comments on commit 48aa99d

Please sign in to comment.