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 112ee3c commit c11f125Copy full SHA for c11f125
.github/workflows/update-release-tags.yml
@@ -1,7 +1,7 @@
1
-name: Update Release Tags
+name: Update Action Release Tags
2
on:
3
push:
4
- tags: '*'
+ tags: ['*']
5
workflow_dispatch:
6
jobs:
7
update-release-tags:
.github/workflows/validate.yml
@@ -1,19 +1,18 @@
name: validate
- branches:
- - 'main'
+ branches: ['main']
pull_request:
8
- - '*'
9
- # Allows you to run this workflow manually from the Actions tab
+ branches: ['*']
10
11
concurrency:
12
group: ${{ github.workflow }}-${{ github.ref }}
13
cancel-in-progress: true
14
15
validate:
16
runs-on: ${{ matrix.os }}
+ permissions:
+ contents: read
17
strategy:
18
fail-fast: false
19
matrix:
0 commit comments