You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add a flag to this action so that we can disable commits and pushes to the current branch or better be able to use a different branch? The reason behind is protective branches. Our master branch has push restrictions and we don't want to lift off this just for pushing badges.
Thanks,
Fadil
The text was updated successfully, but these errors were encountered:
First, got this error: error: pathspec 'gh-pages' did not match any file(s) known to git
Due to git not knowing of the branch. Tried added a git fetch before the badge generation:
- name: Git fetch
run: git fetch
And this worked, the first time. Second time, got this error:
error: The following untracked working tree files would be overwritten by checkout:
coverage-badge-branch.svg
coverage-badge-line.svg
Please move or remove them before you switch branches.
Hi,
Is it possible to add a flag to this action so that we can disable commits and pushes to the current branch or better be able to use a different branch? The reason behind is protective branches. Our master branch has push restrictions and we don't want to lift off this just for pushing badges.
Thanks,
Fadil
The text was updated successfully, but these errors were encountered: