Create Branch on Fork #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Branch on Fork | |
on: | |
fork: | |
branches: | |
- main | |
jobs: | |
create-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get forked user's ID | |
id: get-forked-user | |
run: | | |
FORKED_USER=$(curl -s ${GITHUB_API_URL}/repos/${{ github.repository }}/forks | jq -r '.[0].owner.login') | |
echo "Forked user: $FORKED_USER" | |
echo "::set-output name=forked_user::$FORKED_USER" | |
env: | |
GITHUB_API_URL: https://api.github.com | |
- name: Create branch on original repository | |
run: | | |
FORKED_USER=${{ steps.get-forked-user.outputs.forked_user }} | |
NEW_BRANCH_NAME="${FORKED_USER}" | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git fetch origin | |
git checkout -b $NEW_BRANCH_NAME origin/main | |
git push origin $NEW_BRANCH_NAME | |
env: | |
FORKED_USER: ${{ steps.get-forked-user.outputs.forked_user }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |