We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df4080d commit 7414a9dCopy full SHA for 7414a9d
2 files changed
.github/workflows/jira.yml
@@ -0,0 +1,26 @@
1
+name: JIRA Connection
2
+on:
3
+ pull_request:
4
+ types:
5
+ - opened
6
+ - reopened
7
+ - edited
8
+ - synchronize
9
+jobs:
10
+ enforce-issue:
11
+ runs-on: ubuntu-latest
12
+ name: JIRA Association
13
+ steps:
14
+ - name: Check for JIRA ISSUE
15
+ id: check
16
+ uses: supplypike/jira-pr-link-action@v4
17
+ with:
18
+ ignore-author: |
19
+ dependabot[bot]
20
+ supplypiker
21
+ supplypiker-app[bot]
22
+ supplypiker-github-app[bot]
23
+ project: "[A-Z]{2,10}"
24
+ jira-host: ${{ secrets.JIRA_HOST }}
25
+ jira-email: ${{ secrets.JIRA_EMAIL }}
26
+ jira-api-token: ${{ secrets.JIRA_API_TOKEN }}
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 \
0 commit comments