Skip to content

Commit eef8a35

Browse files
author
Giovani Guizzo
authored
feat: Update branch triggers to include 'develop' for workflows (#1)
* feat: Update branch triggers to include 'develop' for workflows * chore: Add CODEOWNERS file to define repository ownership
1 parent 4c28f06 commit eef8a35

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @merencia @giovaniguizzo

.github/workflows/deploy-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Website
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [master, develop]
66
workflow_dispatch:
77

88
permissions:

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build and Test
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [master, develop]
66
pull_request:
7-
branches: [master]
7+
branches: [master, develop]
88
paths-ignore:
99
- "README.md"
1010
- "CONTRIBUTING.md"

.github/workflows/validate-branch.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Validate PR
22

33
on:
44
pull_request:
5-
branches:
6-
- master
5+
branches: [master, develop]
76

87
jobs:
98
validate-pr:

0 commit comments

Comments
 (0)