Try to fix REPO_TEAM env var

This commit is contained in:
Artem Bilan
2023-11-13 19:05:51 -05:00
parent 761e68d877
commit 21b5251d23
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ changelog:
repository: ${GITHUB_REPOSITORY}
contributors:
exclude:
names: [ ${REPO_TEAM} ]
names: ${REPO_TEAM}
github:
username: spring-builds
password: ${GITHUB_TOKEN}

View File

@@ -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)"