-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (25 loc) · 971 Bytes
/
createissuetest.yml
File metadata and controls
26 lines (25 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
on: push
name: Git Creation Demo
jobs:
gitIssueCreation:
name: Git Creation Demo
runs-on: macos-latest
steps:
- name: Set Up Variables
run: echo "action_url=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" >> $GITHUB_ENV
- name: Create Issue
# You may pin to the exact commit or the version.
uses: maxkomarychev/oction-create-issue@v0.7.1
with:
# Token to authenticate the request
token: ${{ secrets.GITHUB_TOKEN }}
# owner parameter
#owner: TransactionProcessing
# repo parameter
#repo: Testing
# The title of the issue.
title: Investigate Nightly Build Failure
# The contents of the issue.
body: Url is ${{env.action_url}}
# Labels to associate with this issue. _NOTE: Only users with push access can set labels for new issues. Labels are silently dropped otherwise._
labels: bug