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

GitHub Actions runner fails to trigger workflows on multiple tags push #3644

Open
eenagy opened this issue Jan 8, 2025 · 1 comment
Open
Labels
bug Something isn't working

Comments

@eenagy
Copy link

eenagy commented Jan 8, 2025

Describe the bug
GitHub Actions runner fails to trigger workflows when multiple tags are pushed simultaneously using git push --tags. The workflow only triggers successfully when pushing a single tag.

To Reproduce

  1. Create workflow with tag trigger:
on:
  push:
    tags:
      - releases/**
  1. Create multiple tags:
git tag releases/v1.0.0
git tag releases/v1.0.1
  1. Push tags: git push --tags
  2. Observe: No workflow runs are triggered

Expected behavior
Workflow should trigger for each matching tag pushed, regardless of whether tags are pushed individually or in bulk.

Runner Version and Platform

  • Runner: Latest GitHub-hosted runner
  • OS: Ubuntu-latest

What's not working?
When pushing multiple tags simultaneously, no workflows are triggered despite tags matching the pattern. Same workflow triggers correctly when tags are pushed individually.

Job Log Output
N/A - Issue is that jobs don't trigger at all with multiple tags.

Runner and Worker's Diagnostic Logs
N/A - No logs available as runners aren't initiated.

@eenagy eenagy added the bug Something isn't working label Jan 8, 2025
@wtdcode
Copy link

wtdcode commented Jan 9, 2025

Same here. Feel surprised that there were no duplicate issues?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants