From 6abd69b94e604545fb71dc2b87ffafa27569fc6e Mon Sep 17 00:00:00 2001 From: Max Chechel Date: Tue, 26 Mar 2024 14:47:09 -0400 Subject: [PATCH 1/2] Updated go.mod --- go.mod | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 0b99174b..1e25adab 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,14 @@ -module github.com/hexdigest/envconfig +module github.com/validationcloud/envconfig -go 1.16 +go 1.21 require ( github.com/stretchr/testify v1.7.0 go.uber.org/multierr v1.11.0 ) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) From 24ef860328978b7fff43138015825be727e4c430 Mon Sep 17 00:00:00 2001 From: Kevin Matthews Date: Wed, 28 Aug 2024 13:10:18 +0100 Subject: [PATCH 2/2] ci(INF-1419): Add linear compliance yaml --- .../workflows/check-linear-compliance.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/check-linear-compliance.yaml diff --git a/.github/workflows/check-linear-compliance.yaml b/.github/workflows/check-linear-compliance.yaml new file mode 100644 index 00000000..be63d6dd --- /dev/null +++ b/.github/workflows/check-linear-compliance.yaml @@ -0,0 +1,26 @@ +name: Find Linear Issue in Pull Request + +on: + workflow_dispatch: + pull_request: + types: [opened, reopened, edited] + +jobs: + check-linear-issue-on-pull-request: + runs-on: small + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + - name: Checkout Shared Github Actions Repo + uses: actions/checkout@v4 + with: + repository: validationcloud/shared-github-actions + ref: main + path: shared-github-actions + token: ${{ secrets.AUTOMATION_VC_PAT }} + + - name: Find the Linear Issue + uses: ./shared-github-actions/check-linear-compliance + with: + token: ${{ secrets.AUTOMATION_VC_PAT }} + linear-api-key: ${{ secrets.LINEAR_API_KEY }}