Skip to content

Commit

Permalink
Fix Go Action Workflow (#2225)
Browse files Browse the repository at this point in the history
* Fix Action Workflows for main/v0 branches
  • Loading branch information
runewake2 committed Jun 11, 2021
1 parent 27f0598 commit b24543b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checkDocSync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ name: Check Documentation Synchronized
on:
pull_request:
branches:
- master
- next
- v0
- main
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checkLicenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
- main
pull_request:
branches:
- master
- v0
- main
jobs:
build:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
name: Go
on:
# Trigger the workflow on push or pull request,
# but only for the 'next' branch
# but only for the 'main' branch
push:
branches:
- next
- main
pull_request:
branches:
- next
jobs:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ name: Markdown
on:
pull_request:
branches:
- master
- v0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: xt0rted/markdownlint-problem-matcher@v1
- run: (cd site && npm run lint-check)
- run: (cd site && npm run lint-check)

0 comments on commit b24543b

Please sign in to comment.