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

exclude release-please GH actions workflow from CI tests #18

Open
m-jahn opened this issue Nov 7, 2024 · 1 comment
Open

exclude release-please GH actions workflow from CI tests #18

m-jahn opened this issue Nov 7, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@m-jahn
Copy link
Member

m-jahn commented Nov 7, 2024

  • issue: every PR triggers the GH Actions test workflow
  • this includes the automatic PR from the release-please workflow, another GH action
  • to exclude this from tests, we can add this line to the jobs: section of the main.yml file:
if: ${{ github.actor != 'github.actions[bot]' }}

or

if: ${{ github.actor != 'dependabot[bot]' }}

For info see: https://stackoverflow.com/questions/71679568/github-actions-ignore-or-exclude-dependabot-pull-requests
This would be useful for ALL SM pipelines!

@m-jahn m-jahn self-assigned this Nov 7, 2024
@m-jahn m-jahn added the enhancement New feature or request label Nov 7, 2024
@m-jahn
Copy link
Member Author

m-jahn commented Dec 2, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant