Skip to content

Update RELEASING.md to reflect auto-update workflow #196

Update RELEASING.md to reflect auto-update workflow

Update RELEASING.md to reflect auto-update workflow #196

name: Build Pull Request
on:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
cache-read-only: true
lint:
uses: ./.github/workflows/reusable-lint-check.yml
required-status-check:
if: always()
needs:
- common
- lint # wait for lint to complete, but don't require it to pass for merging
runs-on: ubuntu-latest
steps:
# The reusable workflow success depends on all its jobs passing
- if: needs.common.result != 'success'
run: exit 1 # fail