We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d947214 commit 895e146Copy full SHA for 895e146
.github/workflows/post-release.yml
@@ -35,6 +35,18 @@ jobs:
35
repo: context.repo.repo,
36
body: '/approve'
37
})
38
+ - uses: actions/github-script@v5
39
+ if: ${{ steps.cpr.outputs.pull-request-number }}
40
+ with:
41
+ github-token: ${{secrets.GIT_ACCESS_TOKEN}}
42
+ script: |
43
+ await github.rest.pulls.merge({
44
+ owner: context.repo.owner,
45
+ repo: context.repo.repo,
46
+ pull_number: ${{ steps.cpr.outputs.pull-request-number }},
47
+ merge_method: 'merge'
48
+ })
49
+
50
publish-npm:
51
runs-on: ubuntu-latest
52
permissions:
0 commit comments