Add new Fetch and Update methods for ordering Participation API #303
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull request | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| go: | |
| uses: ./.github/workflows/golang.yml | |
| node: | |
| uses: ./.github/workflows/node.yml | |
| scan: | |
| uses: ./.github/workflows/scan.yml | |
| pull-request: | |
| needs: | |
| - go | |
| - node | |
| name: Pull request success | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: "true" |