Skip to content

feat: check-if-verified action #12

feat: check-if-verified action

feat: check-if-verified action #12

name: Check If Verified Test
on:
pull_request:
jobs:
check-commit:
runs-on: ubuntu-latest
steps:
- uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified
id: check-tag
with:
commit: ${{ github.event.pull_request.head.sha }}
assert: true
- name: Echo Outputs
run: |
echo "verified: ${{ steps.check-tag.outputs.verified }}"
echo "object_type: ${{ steps.check-tag.outputs.object_type }}"
echo "verify_url: ${{ steps.check-tag.outputs.verify_url }}"
check-lightweight-tag:
runs-on: ubuntu-latest
steps:
- uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified
id: check-tag
with:
tag: "[email protected]"
assert: true
- name: Echo Outputs
run: |
echo "verified: ${{ steps.check-tag.outputs.verified }}"
echo "object_type: ${{ steps.check-tag.outputs.object_type }}"
echo "verify_url: ${{ steps.check-tag.outputs.verify_url }}"
check-annotated-tag-unsigned:
runs-on: ubuntu-latest
steps:
- uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified
id: check-tag
with:
tag: "[email protected]"
assert: true
- name: Echo Outputs
run: |
echo "verified: ${{ steps.check-tag.outputs.verified }}"
echo "object_type: ${{ steps.check-tag.outputs.object_type }}"
echo "verify_url: ${{ steps.check-tag.outputs.verify_url }}"
check-annotated-tag-signed:
runs-on: ubuntu-latest
steps:
- uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified
id: check-tag
with:
tag: "v2.9.1-vrf-20240227"
repository: smartcontractkit/chainlink
assert: true
- name: Echo Outputs
run: |
echo "verified: ${{ steps.check-tag.outputs.verified }}"
echo "object_type: ${{ steps.check-tag.outputs.object_type }}"
echo "verify_url: ${{ steps.check-tag.outputs.verify_url }}"