Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/jira.yml
Original file line number Diff line number Diff line change
@@ -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 }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
Loading