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 a019157 commit ce2b8b6Copy full SHA for ce2b8b6
.github/workflows/linter.yml
@@ -1,23 +1,17 @@
1
-name: Linton
+name: Lint
2
3
on:
4
push:
5
- branches:
6
- - main # Specify the branches to listen to for pushes
+ branches: ["master"]
+ # Publish semver tags as releases.
7
+ tags: ["v*.*.*"]
8
pull_request:
9
- - main # This allows the workflow to trigger on pull requests to the specified branch
10
-
11
-permissions: {}
12
13
jobs:
14
build:
15
name: Lint
16
runs-on: ubuntu-latest
17
- permissions:
18
- contents: read
19
- packages: read
20
- statuses: write
21
22
steps:
23
- name: Checkout code
0 commit comments