We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4427615 commit f26ed17Copy full SHA for f26ed17
3 files changed
.github/workflows/ci.yaml
@@ -1,11 +1,14 @@
1
name: Build snap and run tests
2
3
+concurrency:
4
+ group: ${{ github.workflow }}-${{ github.ref }}
5
+ cancel-in-progress: true
6
+
7
on:
- workflow_call:
- outputs:
- snap-file:
- description: "The snap output of build process."
8
- value: ${{ jobs.build.outputs.snap-file }}
+ pull_request:
9
10
+permissions:
11
+ content: read
12
13
jobs:
14
build:
.github/workflows/on_pull_request.yaml
.github/workflows/release.yaml
@@ -5,6 +5,9 @@ on:
branches:
- 3.4/*
release_checks:
runs-on: ubuntu-22.04
@@ -51,5 +54,4 @@ jobs:
51
54
secrets:
52
55
snap-store-token: ${{ secrets.SNAP_STORE_TOKEN }}
53
56
permissions:
- actions: read # Needed for GitHub API call to get workflow version
57
contents: write # Needed to create GitHub release
0 commit comments