diff --git a/.github/workflows/jira.yml b/.github/workflows/jira.yml new file mode 100644 index 0000000..839cd58 --- /dev/null +++ b/.github/workflows/jira.yml @@ -0,0 +1,26 @@ +name: JIRA Connection +on: + pull_request: + types: + - opened + - reopened + - edited + - synchronize +jobs: + enforce-issue: + runs-on: ubuntu-latest + name: JIRA Association + steps: + - name: Check for JIRA ISSUE + id: check + uses: supplypike/jira-pr-link-action@v4 + with: + ignore-author: | + dependabot[bot] + supplypiker + supplypiker-app[bot] + supplypiker-github-app[bot] + project: "[A-Z]{2,10}" + jira-host: ${{ secrets.JIRA_HOST }} + jira-email: ${{ secrets.JIRA_EMAIL }} + jira-api-token: ${{ secrets.JIRA_API_TOKEN }} diff --git a/Dockerfile b/Dockerfile index a20281a..18717ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.k8s.io/kustomize/kustomize:v5.0.0 +FROM registry.k8s.io/kustomize/kustomize:v5.8.1 RUN apk add --no-cache \ sed \