Skip to content

Commit

Permalink
git-xargs programmatic commit (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwnasptd committed Nov 14, 2023
1 parent 2c14bb2 commit e7adff1
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Bug Report
description: File a bug report
labels: ["Type: bug"]
labels: ["bug"]
body:
- type: markdown
attributes:
Expand Down Expand Up @@ -55,4 +55,3 @@ body:
id: additional-context
attributes:
label: Additional Context

27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/task.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Task
description: File an enhancement proposal
labels: "enhancement"
body:
- type: markdown
attributes:
value: >
Thanks for taking the time to fill out this enhancement
proposal! Before submitting your issue, please make sure there
isn't already a prior issue concerning this. If there is,
please join that discussion instead.
- type: textarea
id: enhancement-proposal-what
attributes:
label: What needs to get done
description: >
Describe what needs to get done
validations:
required: true
- type: textarea
id: enhancement-proposal-why
attributes:
label: Why it needs to get done
description: >
Describe why it needs to get done
validations:
required: true
17 changes: 17 additions & 0 deletions .github/workflows/issues_to_jira.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# this workflow requires to provide JIRA webhook URL via JIRA_URL GitHub Secret
# read more: https://support.atlassian.com/cloud-automation/docs/jira-automation-triggers/#Automationtriggers-Incomingwebhook
# original code source: https://github.com/beliaev-maksim/github-to-jira-automation

name: Issues to JIRA

on:
issues:
# available via github.event.action
types: [opened, reopened, closed]

jobs:
update:
name: Update Issue
uses: beliaev-maksim/github-to-jira-automation/.github/workflows/issues_to_jira.yaml@master
secrets:
JIRA_URL: ${{ secrets.JIRA_URL }}

0 comments on commit e7adff1

Please sign in to comment.