Skip to content

Commit

Permalink
Update workflow triggers from 'master' to 'main'
Browse files Browse the repository at this point in the history
The workflow triggers for continuous integration and linting were set to trigger on changes to the 'master' branch. These triggers have been updated, switching from 'master' to 'main'. This change aligns with the latest industry standard of naming the main branch 'main' instead of 'master'.
  • Loading branch information
saschadoemer committed Mar 22, 2024
1 parent acf1ce4 commit b9c4a2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Continuous Integration

on:
push:
branches: [ master ]
branches: [ main ]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linting-for-all-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Continuous Integration

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:
Expand Down

0 comments on commit b9c4a2d

Please sign in to comment.