Bump ip from 1.1.8 to 1.1.9 #63
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: Default Branch Migration | |
on: [push] | |
jobs: | |
migrate_branch: | |
name: Migrate Branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Migrate | |
uses: liyanchang/default-branch-migration@v1.0.1 | |
with: | |
# GitHub will fill in this template with the correct token | |
# You don't need to edit this line | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# TODO: Change this to the default branch you want to migrate away from | |
previous_default: master | |
# TODO: Change this to the default branch you want to migrate away to | |
new_default: trunk |