We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I had this in my gemspec:
Gem::Specification.new do |spec| # ... spec.homepage = "https://github.com/rubyatscale/singed" spec.metadata = { "source_code_uri" => "https://github.com/rubyatscale/singed.git", "bug_tracker_uri" => "https://github.com/rubyatscale/singed/issues", "homepage_uri" => "https://github.com/rubyatscale/singed" } # ... end
Semantically, I'm not sure if the source code URI is intended to be clonable or not, so I used
This ended up generating this workflow YAML which never evaluates to true:
jobs: push: if: github.repository == 'rubyatscale/singed.git' runs-on: ubuntu-latest
That resulted in the workflow being "skipped"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had this in my gemspec:
Semantically, I'm not sure if the source code URI is intended to be clonable or not, so I used
This ended up generating this workflow YAML which never evaluates to true:
That resulted in the workflow being "skipped"
The text was updated successfully, but these errors were encountered: