Skip to content

Commit 63c519e

Browse files
committed
test app credentials
1 parent e1b160f commit 63c519e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/temp.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)