Skip to content

Commit

Permalink
Add support for v1 branch in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
felladrin committed Nov 4, 2023
1 parent 9f77e2b commit 4e2fedf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ on:
- master
- feature/**
tags:
- 'v*'
- "v*"
pull_request:
branches:
- master
- v1
jobs:
mdvalidate:
name: Validate Markdown Files
Expand All @@ -20,7 +21,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 1
fetch-depth: 1

- name: Markdown Link Validation
uses: gaurav-nelson/github-action-markdown-link-check@v1
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches: [master]
pull_request:
branches: [master]
branches: [master, v1]
jobs:
checkup:
name: Checkup
Expand Down

0 comments on commit 4e2fedf

Please sign in to comment.