Update smartcontractkit/chainlink-solana requirement to 02a42e04dc42d30a41f07dd100cf1062e0c04a16 #164
Workflow file for this run
This file contains 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: Operator UI CI | |
on: | |
pull_request: | |
env: | |
TARGET_BRANCH_NAME: ${{ github.event.pull_request.base.ref }} | |
jobs: | |
check-gql: | |
permissions: | |
id-token: write | |
contents: read | |
# To allow writing comments to the current PR | |
pull-requests: write | |
name: Breaking Changes GQL Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Collect Metrics | |
id: collect-gha-metrics | |
uses: smartcontractkit/push-gha-metrics-action@dea9b546553cb4ca936607c2267a09c004e4ab3f # v3.0.0 | |
with: | |
id: operator-ui-ci | |
basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
this-job-name: Breaking Changes GQL Check | |
continue-on-error: true | |
- name: Assume role capable of dispatching action | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | |
with: | |
role-to-assume: ${{ secrets.AWS_OIDC_CHAINLINK_CI_OPERATOR_UI_ACCESS_TOKEN_ISSUER_ROLE_ARN }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
role-duration-seconds: 3600 | |
role-session-name: operator-ui-ci.check-gql | |
mask-aws-account-id: true | |
- name: Get Github Token | |
id: get-gh-token | |
uses: smartcontractkit/chainlink-github-actions/github-app-token-issuer@5874ff7211cf5a5a2670bb010fbff914eaaae138 # v2.3.12 | |
with: | |
url: ${{ secrets.AWS_INFRA_RELENG_TOKEN_ISSUER_LAMBDA_URL }} | |
- name: Checkout repository | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- name: Get operator-ui tag | |
id: get-operator-ui-tag | |
shell: bash | |
run: | | |
if [[ $TARGET_BRANCH_NAME == release/* ]]; then | |
TAG=$(cat ./operator_ui/TAG) | |
echo "TAG=$TAG" >> $GITHUB_OUTPUT | |
else | |
echo "TAG=main" >> $GITHUB_OUTPUT | |
fi | |
- uses: convictional/trigger-workflow-and-wait@f69fa9eedd3c62a599220f4d5745230e237904be #v1.6.5 | |
with: | |
owner: smartcontractkit | |
repo: operator-ui | |
github_token: ${{ steps.get-gh-token.outputs.access-token }} | |
workflow_file_name: chainlink-ci.yml | |
client_payload: '{"ref": "${{ github.event.pull_request.head.sha }}", "tag": "${{ steps.get-operator-ui-tag.outputs.TAG }}"}' |