We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ecbaf8 commit 5f1b5e3Copy full SHA for 5f1b5e3
1 file changed
.github/workflows/build.yml .github/workflows/ci.yml.github/workflows/build.yml renamed to .github/workflows/ci.yml
@@ -1,11 +1,19 @@
1
-name: Test if build is working
+name: CI
2
3
on:
4
pull_request:
5
- types: [opened, synchronize]
+ branches: [main]
6
+ workflow_dispatch:
7
+
8
+concurrency:
9
+ group: ci-${{ github.ref }}
10
+ cancel-in-progress: true
11
12
+permissions:
13
+ contents: read
14
15
jobs:
- test:
16
+ build:
17
runs-on: ubuntu-latest
18
steps:
19
- name: Generate GitHub App Token
0 commit comments