Skip to content

Commit

Permalink
Merge branch 'main' into subscription
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt authored Apr 5, 2023
2 parents ea73111 + 9368707 commit 7671f48
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/app_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@

name: app-ci

concurrency:
group: app-ci-${{ github.head_ref }}
# In order to conserve the use of GitHub Actions, we cancel the running action
# of the previous commit. This means that if you first commit "A" and then
# commit "B" to the pull request a few minutes later, the workflow for commit
# "A" will be cancelled.
cancel-in-progress: true

on:
# Triggers the workflow on pull request events
pull_request:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/cli_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@

name: cli-ci

concurrency:
group: cli-ci-${{ github.head_ref }}
# In order to conserve the use of GitHub Actions, we cancel the running action
# of the previous commit. This means that if you first commit "A" and then
# commit "B" to the pull request a few minutes later, the workflow for commit
# "A" will be cancelled.
cancel-in-progress: true

on:
pull_request:
types:
Expand Down

0 comments on commit 7671f48

Please sign in to comment.