-
Notifications
You must be signed in to change notification settings - Fork 228
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
Extra commit when commiting #20
Comments
Solved this by specifying the correct ref when checking out:
|
kenorb
added a commit
to EA31337/EA31337
that referenced
this issue
Jul 13, 2020
Open
This was referenced Jul 13, 2020
kenorb
added a commit
to EA31337/EA31337
that referenced
this issue
Jul 15, 2020
Solved this issue (deny updating a hidden ref) with:
|
3 tasks
robjohn8989
added a commit
to robjohn8989/EA31337
that referenced
this issue
Aug 15, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to create a workflow that generates a file and then commits this file. This should happen on a separate branch and be merged when the action is complete. I currently use another action to merge and delete the branch.
workflow.yaml
When I specify
branch: ${{ github.HEAD_REF }}
an extra commit is created where some merging is done.With
branch: ${{ github.BRANCH }}
the branch is merged and then the commit is applied.With
branch: ${{ github.REF }}
I get the error:Overview here.
Is it possible to have the commit happen on the branch without creating the extra merge commit?
The text was updated successfully, but these errors were encountered: