We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b160f commit 63c519eCopy full SHA for 63c519e
.github/workflows/temp.yml
@@ -0,0 +1,29 @@
1
+name: Test
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v6
13
+ - id: generate-token
14
+ name: extension_bump::generate_token
15
+ uses: actions/create-github-app-token@v2
16
+ with:
17
+ app-id: ${{ secrets.ZED_ZIPPY_APP_ID }}
18
+ private-key: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}
19
+ - name: extension_bump::create_version_tag
20
+ uses: actions/github-script@v7
21
22
+ script: |-
23
+ github.rest.git.createRef({
24
+ owner: context.repo.owner,
25
+ repo: context.repo.repo,
26
+ ref: 'refs/tags/v0.1.1-test',
27
+ sha: context.sha
28
+ })
29
+ github-token: ${{ steps.generate-token.outputs.token }}
0 commit comments