Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ on:
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: windows-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v4

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ on:
pull_request:
# Run CI on PRs targeting dev
branches: [dev]


permissions:
contents: read

jobs:
build:
name: Build on Windows
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@ on:
pull_request:
branches: [dev, main]

permissions:
contents: read

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [ "dev" ]

permissions:
contents: read

jobs:
build:
runs-on: windows-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dotnet-desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [dev, main]

permissions:
contents: read

jobs:
build-debug:
name: build (Debug)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
# every day at midnight UTC
- cron: '0 0 * * *'

permissions:
contents: read

jobs:
nightly:
name: Nightly Dev Build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/prod-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: [main]
workflow_dispatch:

permissions:
contents: read

jobs:
prod:
name: Production Release Build
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ on:
push:
branches: [main]

permissions:
contents: read

jobs:
update_release_draft:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- uses: actions/checkout@v4
- uses: release-drafter/release-drafter@v5
Expand Down
Loading