Skip to content

Commit

Permalink
Fix broken actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mjansen4857 committed Jan 31, 2024
1 parent 6234067 commit c0867e5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
18 changes: 10 additions & 8 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
dependencies:
- pubspec.yaml
- changed-files:
- any-glob-to-any-file: ['pubspec.yaml']

GUI:
- 'lib/**'
- 'test/**'
- pubspec.yaml
- changed-files:
- any-glob-to-any-file: ['lib/**', 'test/**', pubspec.yaml]

PathPlannerLib:
- 'pathplannerlib/**'
- 'pathplannerlib-python/**'
- changed-files:
- any-glob-to-any-file: ['pathplannerlib/**', 'pathplannerlib-python/**']

workflows:
- '.github/workflows/**'
- changed-files:
- any-glob-to-any-file: ['.github/workflows/**']

documentation:
- 'Writerside/**'
- changed-files:
- any-glob-to-any-file: ['Writerside/**']
2 changes: 1 addition & 1 deletion .github/workflows/build-pplib-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
distribution: 'zulu'

- name: Set version
run: sed -i '' "s/0.0.0/${{ github.event.inputs.version }}/g" publish.gradle
run: sed -i "s/0.0.0/${{ github.event.inputs.version }}/g" publish.gradle
working-directory: ./pathplannerlib

- name: Ensure spotless is applied
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pplib-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ jobs:
distribution: 'zulu'

- name: Set version
run: sed -i '' "s/0.0.0/${{ env.VERSION_NAME }}/g" publish.gradle
run: sed -i "s/0.0.0/${{ env.VERSION_NAME }}/g" publish.gradle
working-directory: ./pathplannerlib

- name: Ensure spotless is applied
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Pull Request Labeler"
on:
pull_request_target:
pull_request:

jobs:
triage:
Expand All @@ -9,6 +9,9 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- uses: actions/labeler@v5
with:
sync-labels: true
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: algolia-indexes

Expand Down

0 comments on commit c0867e5

Please sign in to comment.