mirror of
https://github.com/actions/checkout.git
synced 2025-04-04 10:27:35 +00:00
Create missing-ref-issue.yml
This commit is contained in:
parent
cbb722410c
commit
c9ba001426
1 changed files with 23 additions and 0 deletions
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…
Add table
Reference in a new issue