Revert "[Action] master 변경사항 backend에 적용"
This commit is contained in:
parent
f2a7672f73
commit
d108709e4d
28
frontend/.github/workflows/change-pr-target.yaml
vendored
28
frontend/.github/workflows/change-pr-target.yaml
vendored
@ -1,28 +0,0 @@
|
|||||||
name: Change PR target if base branch is master
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- synchronize
|
|
||||||
- reopened
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
change-pr-target:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Set target environment variable
|
|
||||||
run: |
|
|
||||||
if [[ "${GITHUB_HEAD_REF}" == fe* || "${GITHUB_HEAD_REF}" == FE* ]]; then
|
|
||||||
echo "target=frontend" >> $GITHUB_ENV
|
|
||||||
elif [[ "${GITHUB_HEAD_REF}" == be* || "${GITHUB_HEAD_REF}" == BE* ]]; then
|
|
||||||
echo "target=backend" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Change base branch for PR
|
|
||||||
if: env.target == 'frontend' || env.target == 'backend'
|
|
||||||
run: gh pr edit ${{ github.event.pull_request.number }} --base ${{ env.target }} --repo ${{ github.repository }}
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
Loading…
Reference in New Issue
Block a user