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
122 changes: 0 additions & 122 deletions .github/workflows/branch_build.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/feature_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Feature Build

on:
pull_request:
merge_group: # support for merge queues/groups
workflow_dispatch:

# Allow this job to be canceled when new commits are pushed
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:
uses: ./.github/workflows/subworkflow-build.yml
secrets: inherit
permissions:
contents: write
pull-requests: read

deploy:
uses: ./.github/workflows/subworkflow-deploy.yml
secrets: inherit
if: github.actor != 'dependabot[bot]' && github.event_name == 'pull_request'
needs: [build]
permissions:
contents: read
pull-requests: write
27 changes: 27 additions & 0 deletions .github/workflows/main_merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Main Build

on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-build
cancel-in-progress: false

jobs:
build_and_tag:
uses: ./.github/workflows/subworkflow-build.yml
secrets: inherit
with:
push-tag: true
permissions:
contents: write
pull-requests: read

release:
uses: ./.github/workflows/subworkflow-release.yml
secrets: inherit
needs: [build_and_tag]
permissions:
contents: write
95 changes: 0 additions & 95 deletions .github/workflows/pr_build.yml

This file was deleted.

Loading
Loading