Fixed various typos and unified some formats in documentation (backpo… #372
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
# .github/workflows/mirror.yml | |
on: | |
push: | |
branches: | |
- '2.6.x' | |
jobs: | |
mirror_job: | |
name: Mirror 2.6.x branch to 2.6.9 branch | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
dest_branch: | |
- '2.6.9' | |
steps: | |
- name: Mirror action step | |
id: mirror | |
uses: google/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
source: '2.6.x' | |
dest: ${{ matrix.dest_branch }} |