Stefan Zweifel
43818d5044
Fix Typo
2023-10-06 19:30:48 +02:00
dependabot[bot]
47a8ad5f38
Bump bats from 1.9.0 to 1.10.0 ( #293 )
...
Bumps [bats](https://github.com/bats-core/bats-core ) from 1.9.0 to 1.10.0.
- [Release notes](https://github.com/bats-core/bats-core/releases )
- [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md )
- [Commits](https://github.com/bats-core/bats-core/compare/v1.9.0...v1.10.0 )
---
updated-dependencies:
- dependency-name: bats
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-17 09:56:06 +02:00
dependabot[bot]
77a7b3fb3c
Bump github/super-linter from 4 to 5 ( #289 )
...
Bumps [github/super-linter](https://github.com/github/super-linter ) from 4 to 5.
- [Release notes](https://github.com/github/super-linter/releases )
- [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md )
- [Commits](https://github.com/github/super-linter/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: github/super-linter
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-23 09:20:59 +02:00
Pedro Amador Rodríguez
9cc0a1f55d
Seems like there is an extra space ( #288 )
2023-04-03 08:55:34 +02:00
Stefan Zweifel
0b5f8a5333
Update Test
2023-03-28 14:46:47 +02:00
Stefan Zweifel
3a446b74f0
Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action
2023-02-15 19:45:07 +01:00
Stefan Zweifel
8e108d701f
Fix docs about using in public forks
...
Update docs section about using the Action in public forks.
Add warning about current issue when the forks lives under an organisation.
Mark section about running a workflow in the head repository as outdated, as I was not able to reproduce this in test projects.
See https://github.com/stefanzweifel/git-auto-commit-action/issues/211#issuecomment-1428849944 for more details.
2023-02-15 19:44:45 +01:00
dependabot[bot]
c8254de74f
Bump bats from 1.8.2 to 1.9.0 ( #282 )
...
Bumps [bats](https://github.com/bats-core/bats-core ) from 1.8.2 to 1.9.0.
- [Release notes](https://github.com/bats-core/bats-core/releases )
- [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md )
- [Commits](https://github.com/bats-core/bats-core/compare/v1.8.2...v1.9.0 )
---
updated-dependencies:
- dependency-name: bats
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-02-13 08:22:21 +01:00
Stefan Zweifel
6436584fbb
Fix Comment in README
2023-02-11 21:31:27 +01:00
Stefan Zweifel
6656e54255
Use actions/checkout@v3 in examples
2023-02-11 21:29:21 +01:00
Stefan Zweifel
f0b35f0a73
Mention new permission requirements in usage docs
...
Starting February 2nd 2023, GitHub changed the default permissions of the GITHUB_TOKEN to be read-only in all new repositories.[1]
git-auto-commits needs `write`-permissions for the `contents`-key in order to work properly.
This commits updates the usage section, to mention the need for the permission requirements. The examples have also been updated to reflect that change.
[1]: https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/
2023-02-11 21:29:07 +01:00
Stefan Zweifel
ccd4d054a5
Fix Typo in Workflow comments
2023-02-11 21:14:56 +01:00
Stefan Zweifel
94d6bf9d22
Add permissions block to Workflows
2023-02-11 12:23:24 +01:00
Stefan Zweifel
f44d1cd002
Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action
2023-01-25 19:58:10 +01:00
Stefan Zweifel
92b3981e0b
Update Author Email Address
2023-01-25 19:57:43 +01:00
Stefan Zweifel
3b94e3d017
Update README.md
...
Closes #281
2023-01-20 15:31:53 +01:00
Stefan Zweifel
3663a6fa3e
Update README.md
2023-01-14 18:05:16 +01:00
Stefan Zweifel
fe00d25867
Add test for multi-line commit messages
2023-01-07 12:06:10 +01:00
cong
86fb2e11b2
Fix git-auto-commit.yml ( #277 )
2023-01-03 08:17:32 +01:00
Stefan Zweifel
aeb1802648
Add _log and _set_github_output functions ( #273 )
...
* Add _set_github_output function
* Use _set_github_output in Action
* Add _log function
* Use _log in Action and fix Test Cases
* Update wording in log messages
* Update note about removal of old output syntax
Logic is now encapuslated in a single function. I don’t mind keeping it around until spring / June 2023
2022-12-22 19:45:17 +01:00
stefanzweifel
925bbcaef3
Update CHANGELOG
2022-12-02 06:50:39 +00:00
ZeroRin
3ea6ae190b
Fix "nothing to commit" error with LF/CRLF changes #241 ( #265 )
...
* fix crlf test
* add diff check before commit
* add dirty check flag (not sure if needed)
* Update test name and add more assertions
Update test name to make it clear that the Action no longer fails to detect CRLF changes.
* Add Comment to explain why we use git-diff again
* Add test to confirm content changes are commited
* Closes #241
Co-authored-by: Stefan Zweifel <hello@stefanzweifel.io>
2022-12-01 20:47:06 +01:00
Teko
976f22029f
Fix github-actions[bot] email address ( #264 )
2022-11-15 20:12:31 +01:00
Teko
ebb5756042
Fix link and text for workflow limitation ( #263 )
2022-11-13 10:06:41 +01:00
stefanzweifel
3dce995a13
Update CHANGELOG
2022-11-05 10:56:08 +00:00
Stefan Zweifel
0b007fbd11
Let Action fail if git binary can't be located ( #261 )
...
* Check if git binary exists
* Add Tests
2022-11-05 11:53:46 +01:00
dependabot[bot]
7106b2184a
Bump github/super-linter from 3 to 4 ( #258 )
...
Bumps [github/super-linter](https://github.com/github/super-linter ) from 3 to 4.
- [Release notes](https://github.com/github/super-linter/releases )
- [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md )
- [Commits](https://github.com/github/super-linter/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: github/super-linter
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-26 19:05:48 +02:00
dependabot[bot]
f166130208
Bump bats from 1.7.0 to 1.8.2 ( #259 )
...
Bumps [bats](https://github.com/bats-core/bats-core ) from 1.7.0 to 1.8.2.
- [Release notes](https://github.com/bats-core/bats-core/releases )
- [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md )
- [Commits](https://github.com/bats-core/bats-core/compare/v1.7.0...v1.8.2 )
---
updated-dependencies:
- dependency-name: bats
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-26 19:04:33 +02:00
dependabot[bot]
021a6363fa
Bump actions/checkout from 2 to 3 ( #257 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-26 19:03:57 +02:00
Stefan Zweifel
38864a638f
Create dependabot.yml
2022-10-26 19:02:41 +02:00
stefanzweifel
393fea59ef
Update CHANGELOG
2022-10-26 16:57:18 +00:00
Stefan Zweifel
0049e3fa40
Use deprecated set-output syntax if GITHUB_OUTPUT environment is not available ( #255 )
...
* Fallback to set-output if GITHUB_OUTPUT not available
* Add Tests to cover old syntax
2022-10-26 18:55:42 +02:00
stefanzweifel
f6f7a9c351
Update CHANGELOG
2022-10-22 09:19:59 +00:00
Andrew Monshizadeh
2fde6fc18d
Replace set-output usage with GITHUB_OUTPUT ( #252 )
...
* GitHub has deprecated set-output and now needs to add the content to the GITHUB_OUTPUT file
* Update tests too
* Fix tests and shell-format changes
* Revert yarn.lock changes
2022-10-22 10:42:11 +02:00
Stefan Zweifel
faf78595b8
Update README.md
2022-10-21 09:28:08 +02:00
stefanzweifel
a0873a0795
Update CHANGELOG
2022-10-10 17:17:41 +00:00
Stefan Zweifel
fd157da78f
Run Action on Node16 ( #247 )
...
closes #246
2022-10-10 19:15:24 +02:00
Stefan Zweifel
b208f78c10
Test that CRLF changes are not picked up
...
This PR adds a test to confirm, that changes to CRLF are not properly detected and that the message "Working tree clean. Nothing to commit." is displayed.
Setting `core.autocrlf` to `true` also has no effect here.
refs #241
2022-09-28 20:19:50 +02:00
stefanzweifel
cef08f2918
Update CHANGELOG
2022-09-24 08:53:51 +00:00
Stefan Zweifel
6c32682a40
Add bug label to new issues
2022-09-17 16:37:41 +02:00
Stefan Zweifel
a4a482b6c5
Update Issue Templates
2022-09-17 16:35:49 +02:00
Stefan Zweifel
18870f2286
Add note about line break detection
2022-09-17 16:02:44 +02:00
Stefan Zweifel
52eb0eedc8
Update README
2022-09-17 15:34:02 +02:00
Karol
03246c1cee
Changed the extended example to correctly use quotes for strings ( #196 )
...
Co-authored-by: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
2022-09-17 15:33:25 +02:00
Stefan Zweifel
4d00f10668
Expand file_pattern
-input to an array ( #205 )
...
* Expand file_pattern input
* Expand file pattern array in git-status
* Add Failing Test
* Expand INPUT_FILE_PATTERN
* Fix Shellcheck Issues
* Add test to cover file expansion works when globbing is disabled
* Add explanation to README
2022-09-17 15:18:36 +02:00
Stefan Zweifel
4e7c0d67cd
Assert throws error when force adding ignored files
...
See https://github.com/stefanzweifel/git-auto-commit-action/issues/204#issuecomment-1236880360
2022-09-06 21:04:34 +02:00
Stefan Zweifel
dce7e85096
Add Tests to Cover #233
2022-07-30 20:21:57 +02:00
Stefan Zweifel
9262405709
Fix Typo in Test
2022-07-30 20:14:41 +02:00
Stefan Zweifel
32807d4f18
Upgrade Bats
2022-07-30 20:14:29 +02:00
Derrick Lee
f5b5fefa06
docs: fix typos and grammer errors in readme.md ( #235 )
2022-07-27 08:23:35 +02:00