Skip to content

Commit 947991c

Browse files
chore: bump version to 1.1.90 (#250)
* chore: bump version to 1.1.90 * chore: add permissions to GitHub Actions workflows
1 parent 9715b36 commit 947991c

File tree

4 files changed

+45
-36
lines changed

4 files changed

+45
-36
lines changed
+18-13
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
name: 'Close stale issues and PRs'
2-
on:
3-
schedule:
4-
- cron: '30 1 * * *'
5-
6-
jobs:
7-
stale:
8-
runs-on: ubuntu-latest
9-
steps:
10-
- uses: actions/stale@v9
11-
with:
12-
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
13-
days-before-stale: 30
1+
name: 'Close stale issues and PRs'
2+
permissions:
3+
contents: write
4+
pull-requests: write
5+
issues: write
6+
7+
on:
8+
schedule:
9+
- cron: '30 1 * * *'
10+
11+
jobs:
12+
stale:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/stale@v9
16+
with:
17+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
18+
days-before-stale: 30
1419
days-before-close: 5

.github/workflows/playwright.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Playwright Tests
2+
permissions:
3+
contents: read
4+
25
on:
36
push:
47
branches: [main, master, dev, enable-coveralls]

.github/workflows/publish.yml

+23-22
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
name: Node.js Package and Publish
2-
3-
on:
4-
release:
5-
types: [created]
6-
7-
jobs:
8-
publish:
9-
runs-on: ubuntu-20.04
10-
steps:
11-
- uses: actions/checkout@v1
12-
- name: install node v18.18.2
13-
uses: actions/setup-node@v1
14-
with:
15-
node-version: 18.18.2
16-
- name: yarn install
17-
run: yarn install
18-
- name: build
19-
run: npm run build
20-
- uses: JS-DevTools/npm-publish@v1
21-
with:
22-
token: ${{ secrets.NPM_TOKEN }}
1+
name: Node.js Package and Publish
2+
permissions:
3+
contents: read
4+
on:
5+
release:
6+
types: [created]
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: install node v18.18.2
14+
uses: actions/setup-node@v1
15+
with:
16+
node-version: 18.18.2
17+
- name: yarn install
18+
run: yarn install
19+
- name: build
20+
run: npm run build
21+
- uses: JS-DevTools/npm-publish@v1
22+
with:
23+
token: ${{ secrets.NPM_TOKEN }}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"cli-debug": "yarn build && npx . -c ./cli_config.json -j ./tests/test_data/valid_test_results.json"
3737
},
3838
"name": "playwright-slack-report",
39-
"version": "1.1.89",
39+
"version": "1.1.90",
4040
"bin": {
4141
"playwright-slack-report": "dist/cli.js"
4242
},

0 commit comments

Comments
 (0)