Skip to content

ci(PR): introduce action message #2132

ci(PR): introduce action message

ci(PR): introduce action message #2132

Workflow file for this run

name: PR
on:
pull_request:
branches: [master, vara-stage-1, vara-stage-2, vara-stage-3]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
RUST_BACKTRACE: short
TERM: xterm-256color
BINARYEN_VERSION: version_111
jobs:
status:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- run: npm install
working-directory: .github/actions/message
- name: Configure
id: config
uses: ./.github/actions/message
check:
needs: status
if: ${{ needs.status.outputs.check }}
uses: ./.github/workflows/check.yml
with:
cache: ${{ needs.status.steps.config.outputs.cache }}
build:
needs: status
if: ${{ needs.status.outputs.build }}
uses: ./.github/workflows/build.yml
with:
cache: ${{ needs.status.steps.config.outputs.cache }}
macos: ${{ needs.status.steps.config.outputs.macos }}