Ignore permission changes / filemode false? #366
|
Is it possible to set the action to ignore any permission change commits? As part of ensuring some of our generated files exist and are accessible, we generate and set permissions in an action and commit files if it was generated previously for the PR. Generally we set the |
Answered by
stefanzweifel
Apr 18, 2025
Replies: 1 comment 3 replies
|
I honestly have no knowledge or experience using Would setting - name: Set git to ignore file mode changes
run: git config core.fileMode falseOr would you be able to share more on how these permission changes happen? An example script that reproduces your action would be very helpful. |
3 replies
Answer selected by
IronSinew
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I honestly have no knowledge or experience using
core.filemode.Would setting
core.filemodeto false during your Workflow run help here?Or would you be able to share more on how these permission changes happen? An example script that reproduces your action would be very helpful.