File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed
Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,23 @@ concurrency:
1212
1313permissions :
1414 contents : write
15+ issues : write
1516
1617jobs :
1718 prepare-gradle :
1819 runs-on : ubuntu-latest
1920
2021 steps :
21- - uses : actions/checkout@v4
22+ - uses : actions/create-github-app-token@v1
23+ id : app-token
24+ name : Create GitHub App Token
25+ with :
26+ app-id : ${{ vars.CI_APP_ID }}
27+ private-key : ${{ secrets.CI_APP_PRIVATE_KEY }}
2228
23- - name : git author
24- run : |
25- git config --global user.name "SmallRye CI"
26- git config --global user.email "[email protected] " 29+ - uses : actions/checkout@v4
30+ with :
31+ token : ${{steps.app-token.outputs.token}}
2732
2833 - uses : radcortez/project-metadata-action@main
2934 name : retrieve project metadata
3237 github-token : ${{secrets.GITHUB_TOKEN}}
3338 metadata-file-path : ' .github/project.yml'
3439
40+ - name : git author
41+ run : |
42+ git config --global user.name "SmallRye CI"
43+ git config --global user.email "[email protected] " 44+
3545 - name : Prepare Gradle
3646 run : |
3747 echo "version=${{steps.metadata.outputs.current-version}}" > tools/gradle-plugin/gradle.properties
You can’t perform that action at this time.
0 commit comments