We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b23ac commit 03b66eaCopy full SHA for 03b66ea
3 files changed
.github/workflows/build.yml
@@ -10,6 +10,9 @@ on:
10
- "main"
11
- "hotfix-*"
12
13
+permissions:
14
+ contents: read
15
+
16
jobs:
17
build:
18
strategy:
@@ -32,4 +35,4 @@ jobs:
32
35
run: powershell -ExecutionPolicy Bypass -File fetch-source.ps1
33
36
if: runner.os == 'Windows'
34
37
- run: npm link
- - run: allure --version
38
+ - run: allure --version
.github/workflows/npm-publish.yml
@@ -4,6 +4,9 @@ on:
4
release:
5
types: [ published ]
6
7
8
9
publish-npm:
.github/workflows/release.yml
@@ -8,9 +8,14 @@ on:
description: "The release version in <MAJOR>.<MINOR>.<PATCH> format"
required: true
triage:
runs-on: ubuntu-latest
+ permissions:
+ contents: write
19
steps:
20
- name: "Check release version"
21
run: |
0 commit comments