Skip to content

Commit

Permalink
Remove branches from GitHub Actions workflow
Browse files Browse the repository at this point in the history
The GitHub Actions workflow is now triggered only for the 'next' branch, and no longer runs for 'qa' and 'main' branches. This change simplifies the workflow's trigger conditions, focusing testing efforts on 'next'.

Signed-off-by: Jose Borreguero <[email protected]>
  • Loading branch information
jmborr committed Aug 26, 2024
1 parent c0c2611 commit dc34377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
pull_request:
push:
branches: [next, qa, main]
branches: [next]
tags: ['v*']

jobs:
Expand Down

0 comments on commit dc34377

Please sign in to comment.