Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

CI: run on pull requests, not just pushes (#10)

authored by

bnewbold and committed by
GitHub
b8459117 5d23bea2

+8 -1
+8 -1
.github/workflows/build-test-verify.yaml
··· 1 1 name: build-test-verify 2 - on: [push] 2 + on: 3 + pull_request: 4 + push: 5 + branches: 6 + - main 7 + concurrency: 8 + group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' 9 + cancel-in-progress: true 3 10 jobs: 4 11 build: 5 12 runs-on: ubuntu-latest