Skip to content

Commit

Permalink
Try to fix REPO_TEAM env var
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Nov 14, 2023
1 parent 761e68d commit 21b5251
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/changelog-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ changelog:
repository: ${GITHUB_REPOSITORY}
contributors:
exclude:
names: [ ${REPO_TEAM} ]
names: ${REPO_TEAM}
github:
username: spring-builds
password: ${GITHUB_TOKEN}
2 changes: 1 addition & 1 deletion .github/workflows/changelog-for-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
java -jar github-changelog-generator.jar --spring.config.location=.github/changelog-application.yml ${{ inputs.milestone }} changelog.md
env:
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
REPO_TEAM: ${{ inputs.repositoryTeam }}
REPO_TEAM: "[ ${{ inputs.repositoryTeam }} ]"

- name: Print Changelog
run: echo "::notice ::$(cat changelog.md)"

0 comments on commit 21b5251

Please sign in to comment.