Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: tag PR with interface-spec #3784

Merged
merged 3 commits into from
Nov 20, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: "check cddl and candid files"
name: Interface Specification
on:
pull_request:
paths:
- .github/workflows/interface-spec.yml
- docs/references/http-gateway-protocol-spec.md
- docs/references/ic-interface-spec.md
- docs/references/_attachments/certificates.cddl
- docs/references/_attachments/requests.cddl
- docs/references/_attachments/http-gateway.did
- docs/references/_attachments/ic.did
- docs/references/_attachments/interface-spec-changelog.md
- docs/references/_attachments/requests.cddl
push:
branches:
- main
jobs:
cddl-candid:
cddl:
name: Check cddl files
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -19,9 +24,27 @@ jobs:
run: |
docker run --rm -v $PWD/docs/references/_attachments:/workdir ghcr.io/anweiss/cddl-cli:0.9.1 compile-cddl --cddl /workdir/certificates.cddl
docker run --rm -v $PWD/docs/references/_attachments:/workdir ghcr.io/anweiss/cddl-cli:0.9.1 compile-cddl --cddl /workdir/requests.cddl
candid:
name: Check candid files
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check candid files
run: |
curl -L https://github.com/dfinity/candid/releases/download/2023-07-25/didc-linux64 -o didc
chmod +x didc
./didc check docs/references/_attachments/http-gateway.did
./didc check docs/references/_attachments/ic.did
interface-spec-tag:
name: Tag PR with interface-spec
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Tag PR with interface-spec
run: |
gh pr edit ${{ github.event.pull_request.number }} --add-label interface-spec
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading