File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11
11
name : bump_version
12
12
runs-on : ubuntu-latest
13
13
steps :
14
+ - name : Create GitHub App Token
15
+ uses : actions/create-github-app-token@v1
16
+ id : generate_token
17
+ with :
18
+ app-id : ${{ vars.PR_AUTOMATION_BOT_PUBLIC_APP_ID }}
19
+ private-key : ${{ secrets.PR_AUTOMATION_BOT_PUBLIC_PRIVATE_KEY }}
20
+
14
21
- name : Checkout
15
22
uses : actions/checkout@v4
16
23
with :
57
64
- name : Create Pull Request
58
65
uses : dfinity/ci-tools/actions/create-pr@main
59
66
with :
67
+ token : ${{ steps.generate_token.outputs.token }}
60
68
branch_name : ' release/${{ steps.bump_version.outputs.version }}'
61
69
pull_request_title : ' chore: release ${{ steps.bump_version.outputs.version }}'
62
70
pull_request_body : |
Original file line number Diff line number Diff line change 49
49
run : pnpm build
50
50
51
51
- name : Generate release notes
52
- run : cz changelog ${{ github.ref_name }} --file-name RELEASE_NOTES.md
52
+ uses : dfinity/ci-tools/actions/generate-release-notes@main
53
53
54
54
- name : Release ic-representation-independent-hash Cargo crate
55
55
run : cargo publish -p ic-representation-independent-hash --token ${CRATES_TOKEN}
You can’t perform that action at this time.
0 commit comments