Skip to content

Commit

Permalink
change workflow path
Browse files Browse the repository at this point in the history
  • Loading branch information
Alaurant committed Jul 7, 2024
1 parent 632e24e commit 1a7ce9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/teamsync_check_for_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
GIT_DIFF=$(git diff ${{ github.event.before }} ${{ github.sha }} -- "$file")
if [[ "$GIT_DIFF" == *"github_team"* || "$GIT_DIFF" == *"developers"* ]]; then
file="${filepath#permissions/}"
file="${file#permissions/}"
echo "Updating the team in: $file"
java -jar target/github_team_sync.jar "$file"
else
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/teamsync_update_automatically.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
echo "Updating all permissions files..."
for file in permissions/*.yml; do
file="${filepath#permissions/}"
file="${file#permissions/}"
echo "Updating the team in: $file"
java -jar target/github_team_sync.jar "$file"
done
Expand Down

0 comments on commit 1a7ce9f

Please sign in to comment.