Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement scheme for triggering individual CI jobs #577

Merged
merged 2 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitea/workflows/fixturenet-eth-plugeth-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: Fixturenet-Eth-Plugeth-Test

on:
push:
branches: 'ci-test'
branches: '*'
paths:
- '!**'
- '.gitea/workflows/triggers/fixturenet-eth-plugeth-test'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
5 changes: 4 additions & 1 deletion .gitea/workflows/fixturenet-eth-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: Fixturenet-Eth-Test

on:
push:
branches: 'ci-test'
branches: '*'
paths:
- '!**'
- '.gitea/workflows/triggers/fixturenet-eth-test'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
2 changes: 2 additions & 0 deletions .gitea/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main
- publish-test
paths-ignore:
- '.gitea/workflows/triggers/*'

jobs:
publish:
Expand Down
2 changes: 2 additions & 0 deletions .gitea/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- main
- ci-test
paths-ignore:
- '.gitea/workflows/triggers/*'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
2 changes: 2 additions & 0 deletions .gitea/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- main
- ci-test
paths-ignore:
- '.gitea/workflows/triggers/*'

# Needed until we can incorporate docker startup into the executor container
env:
Expand Down
1 change: 1 addition & 0 deletions .gitea/workflows/triggers/fixturenet-eth-plugeth-test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change this file to trigger running the fixturenet-eth-plugeth-test CI job
1 change: 1 addition & 0 deletions .gitea/workflows/triggers/fixturenet-eth-test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change this file to trigger running the fixturenet-eth-test CI job