We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e6a5e commit 996c761Copy full SHA for 996c761
.github/workflows/jira-issue.yaml
@@ -17,12 +17,19 @@ jobs:
17
with:
18
version: 1.0.23
19
20
+ - name: Writes Jira CLI configs
21
+ run: |
22
+ mkdir ~/.jira.d
23
+ cat <<EOM >~/.jira.d/config.yml
24
+ endpoint: ${{ secrets.JIRA_BASE_URL }}
25
+ user: ${{ secrets.JIRA_USER_EMAIL }}
26
+ authentication-method: api-token
27
+ EOM
28
+
29
- name: Create issue
30
run: |
31
jira create \
32
--noedit \
- -e ${{ secrets.JIRA_BASE_URL }} \
- -u ${{ secrets.JIRA_USER_EMAIL }} \
33
-p ${{ secrets.JIRA_PROJECT_CODE }} \
34
-i Task \
35
-o summary="${{ github.event.issues.issue.title }}" \
0 commit comments