mirror of
https://github.com/actions/checkout.git
synced 2025-03-13 08:58:41 +03:00
Create missing-ref-issue.yml
This commit is contained in:
parent
cbb722410c
commit
c9ba001426
23
.github/workflows/missing-ref-issue.yml
vendored
Normal file
23
.github/workflows/missing-ref-issue.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: missing-git-ref-issue
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
open-close-reopen-pr:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
steps:
|
||||
- name: Push dummy PR
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
prBranch=oriy/testRefMerge
|
||||
git branch -d "${prBranch}" 2>/dev/null || true
|
||||
git checkout -b "${prBranch}"
|
||||
touch dummy
|
||||
git commit -am 'test ref merge'
|
||||
git push --force origin "${prBranch}"
|
||||
gh pr create --fill-first
|
||||
|
Loading…
x
Reference in New Issue
Block a user