Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Mar 4, 2024
1 parent 2062999 commit c4c9d9b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
type: boolean
required: false

permissions:
contents: write
packages: write

jobs:
build-test-publish:
name: "Build, test, publish"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ on:
description: ""
required: true

permissions:
contents: write
packages: write

jobs:
build: # run build using the github action!
runs-on: ubuntu-latest
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/ci_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ name: CI (main)

on:
push:
branches: [main]
branches: [chrmarti/deafening-dingo]
workflow_dispatch:

permissions:
contents: write
packages: write

jobs:
build-test-publish:
name: "Build, test, publish"
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/chrmarti/deafening-dingo'
uses: ./.github/workflows/ci_common.yml
with:
release: true
release: false
secrets:
AZDO_TOKEN: ${{ secrets.AZDO_TOKEN }}
4 changes: 3 additions & 1 deletion .github/workflows/pr-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ on:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#issue_comment


permissions:
contents: write
packages: write

jobs:
pr_comment:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr_auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- README.md
- 'docs/**'

permissions:
contents: write
packages: write

jobs:
build-test:
name: "Build, test, publish"
Expand Down

0 comments on commit c4c9d9b

Please sign in to comment.