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 10c394c commit e1df24dCopy full SHA for e1df24d
.github/workflows/publish.yml
@@ -3,7 +3,8 @@ on:
3
# When Release Pull Request is merged
4
push:
5
branches:
6
- - next
+ - 'chore/**'
7
+ - 'feat/**'
8
pull_request:
9
10
- next
@@ -13,12 +14,13 @@ env:
13
14
CI: true
15
jobs:
16
publish:
17
+ permissions:
18
+ contents: write # to create tags and refs
19
+ actions: write # to cancel running workflow (andymckay/cancel-action)
20
+ issues: write # to create comment
21
+
22
name: publish
23
runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- node-version: [16.x]
24
25
steps:
26
# Setup
0 commit comments