mirror of
https://forgejo.stefka.eu/jiriks74/create-pull-request.git
synced 2025-01-18 16:01:06 +01:00
Update workflows
This commit is contained in:
parent
39529236f7
commit
9e25487be4
2 changed files with 30 additions and 5 deletions
19
.github/workflows/create-pull-request.yml
vendored
Normal file
19
.github/workflows/create-pull-request.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
on:
|
||||
repository_dispatch:
|
||||
types: [create-pull-request]
|
||||
name: create-pull-request action testing workflow
|
||||
jobs:
|
||||
createPullRequest:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Create report file
|
||||
run: touch report.txt
|
||||
- name: Create Pull Request
|
||||
uses: ./
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
COMMIT_MESSAGE: Add report file
|
||||
PULL_REQUEST_BODY: This PR is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request).
|
||||
PULL_REQUEST_BRANCH: test-patches
|
||||
PULL_REQUEST_TITLE: '[Test] Add report file'
|
Loading…
Add table
Add a link
Reference in a new issue