From d9ef2826eeb6f4b57dd6d4dfa909086d4435109a Mon Sep 17 00:00:00 2001 From: frank zhu Date: Tue, 26 Mar 2024 12:57:28 -0700 Subject: [PATCH] add tag input to chainlink-ci workflow (#71) * add tag input to chainlink-ci workflow * add changeset --- .changeset/purple-humans-explain.md | 5 +++++ .github/workflows/chainlink-ci.yml | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changeset/purple-humans-explain.md diff --git a/.changeset/purple-humans-explain.md b/.changeset/purple-humans-explain.md new file mode 100644 index 0000000..c783d16 --- /dev/null +++ b/.changeset/purple-humans-explain.md @@ -0,0 +1,5 @@ +--- +'@smartcontractkit/operator-ui': patch +--- + +Fix chainlink-ci workflow by adding tag input to checkout specific tag/commit for operator-ui repo diff --git a/.github/workflows/chainlink-ci.yml b/.github/workflows/chainlink-ci.yml index 010af61..6171b85 100644 --- a/.github/workflows/chainlink-ci.yml +++ b/.github/workflows/chainlink-ci.yml @@ -16,6 +16,9 @@ on: ref: required: true description: The chainlink ref to test against + tag: + required: true + description: The operator-ui tag/commit to checkout against jobs: detect-gql-breaking-changes: @@ -34,6 +37,8 @@ jobs: - name: Checkout the repo uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + with: + ref: ${{ inputs.tag }} - name: Setup node uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1