mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2025-08-01 07:56:08 +08:00
Compare commits
50 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5c9bfe7477 | ||
|
814219db13 | ||
|
a204abce16 | ||
|
fc18df1417 | ||
|
8f243393e7 | ||
|
fc5b9bf8cf | ||
|
a818c89e49 | ||
|
8bf1b5695a | ||
|
ea30556d53 | ||
|
cd7c7f1a8a | ||
|
4e16840be4 | ||
|
b0295737db | ||
|
0d6d4a4b22 | ||
|
091b400419 | ||
|
f7e362220d | ||
|
df97d6fbd8 | ||
|
4f0fc14d0c | ||
|
cdf7b74cbf | ||
|
862aa0e1e1 | ||
|
a9d1ac4f06 | ||
|
ebf8a401ee | ||
|
4b8393320b | ||
|
60c96d8c0d | ||
|
16d2bf88fd | ||
|
54d78531cc | ||
|
f922a52bf1 | ||
|
0bf17c328a | ||
|
240b9ad1fd | ||
|
57054d8e7e | ||
|
613ea337db | ||
|
686020fb2a | ||
|
90b474f549 | ||
|
8c26230a11 | ||
|
961d68003e | ||
|
cbc3d50cea | ||
|
9e4e2e76fa | ||
|
09aaf2d8fa | ||
|
c7ad0bdb15 | ||
|
9cb711878d | ||
|
b3fc6f8a17 | ||
|
d51384f592 | ||
|
4e7ddef1e0 | ||
|
cc7755497c | ||
|
5c3c72f20e | ||
|
505389d146 | ||
|
303ce37181 | ||
|
13efc066dd | ||
|
3c204cdee3 | ||
|
0429047166 | ||
|
09d3315401 |
18
.github/workflows/linter.yml
vendored
Normal file
18
.github/workflows/linter.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
name: Lint Code Base
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Lint Code Base
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Lint Code Base
|
||||
uses: github/super-linter@v3
|
||||
env:
|
||||
VALIDATE_ALL_CODEBASE: false
|
||||
DEFAULT_BRANCH: master
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
12
.github/workflows/shellcheck.yml
vendored
12
.github/workflows/shellcheck.yml
vendored
@@ -1,12 +0,0 @@
|
||||
name: Shellcheck
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: shellcheck
|
||||
uses: ludeeus/action-shellcheck@0.1.0
|
23
.github/workflows/tests.yml
vendored
Normal file
23
.github/workflows/tests.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: tests
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Shell Mock
|
||||
run: |
|
||||
git clone https://github.com/capitalone/bash_shell_mock
|
||||
cd bash_shell_mock
|
||||
sudo ./install.sh /usr/local
|
||||
|
||||
- name: Install BATS
|
||||
run: yarn install
|
||||
|
||||
- name: Run Tests
|
||||
run: yarn test
|
||||
|
2
.github/workflows/versioning.yml
vendored
2
.github/workflows/versioning.yml
vendored
@@ -12,4 +12,4 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"
|
||||
with:
|
||||
- publish_latest_tag: true
|
||||
publish_latest_tag: true
|
||||
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
tests/test_repo
|
||||
tests/tmpstubs
|
||||
tests/shellmock.*
|
||||
yarn.lock
|
24
CHANGELOG.md
24
CHANGELOG.md
@@ -4,12 +4,32 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.4.1...HEAD)
|
||||
## [Unreleased](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.6.0...HEAD)
|
||||
|
||||
> TBD
|
||||
|
||||
|
||||
## [v4.4.1](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.4.0...v4.4.1) - 2020-08-016
|
||||
## [v4.6.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.5.1...v4.6.0) - 2020-10-11
|
||||
|
||||
### Changes
|
||||
|
||||
- Make "commit_message" optional and set default commit message to "Apply automatic changes" [#103](https://github.com/stefanzweifel/git-auto-commit-action/issues/103), [#110](https://github.com/stefanzweifel/git-auto-commit-action/pull/110)
|
||||
|
||||
### Fixes
|
||||
- Better support for branch names with special characters in them [#108](https://github.com/stefanzweifel/git-auto-commit-action/pull/108)
|
||||
|
||||
|
||||
## [v4.5.1](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.5.0...v4.5.1) - 2020-09-11
|
||||
|
||||
### Removed
|
||||
- Remove orphan branch feature added in #95 which broke stuff [#98](https://github.com/stefanzweifel/git-auto-commit-action/pull/98)
|
||||
|
||||
## [v4.5.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.4.1...v4.5.0) - 2020-09-10
|
||||
|
||||
### Added
|
||||
- Create orphan branch if branch name does not exist [#95](https://github.com/stefanzweifel/git-auto-commit-action/pull/95)
|
||||
|
||||
## [v4.4.1](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.4.0...v4.4.1) - 2020-08-16
|
||||
|
||||
### Changed
|
||||
- Include given `file_pattern` in git dirty check [#91](https://github.com/stefanzweifel/git-auto-commit-action/pull/91)
|
||||
|
97
README.md
97
README.md
@@ -2,6 +2,10 @@
|
||||
|
||||
> The GitHub Action for committing files for the 80% use case.
|
||||
|
||||
<a href="https://github.com/stefanzweifel/git-auto-commit-action/actions?query=workflow%3Atests">
|
||||
<img src="https://github.com/stefanzweifel/git-auto-commit-action/workflows/tests/badge.svg" alt="">
|
||||
</a>
|
||||
|
||||
This GitHub Action automatically commits files which have been changed during a Workflow run and pushes the commit back to GitHub.
|
||||
The default committer is "GitHub Actions <actions@github.com>", and the default author of the commit is "Your GitHub Username <github_username@users.noreply.github.com>".
|
||||
|
||||
@@ -15,7 +19,7 @@ Add the following step at the end of your job, after other steps that might add
|
||||
```yaml
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
# Required
|
||||
# Optional but recommended, defaults to "Apply automatic changes"
|
||||
commit_message: Apply automatic changes
|
||||
|
||||
# Optional branch to push to, defaults to the current branch
|
||||
@@ -29,7 +33,7 @@ Add the following step at the end of your job, after other steps that might add
|
||||
# See the `pathspec`-documentation for git
|
||||
# - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203
|
||||
# - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec
|
||||
file_pattern: src/*.js tests/*.js
|
||||
file_pattern: src/*.js tests/*.js *.php
|
||||
|
||||
# Optional local file path to the repository
|
||||
repository: .
|
||||
@@ -44,6 +48,7 @@ Add the following step at the end of your job, after other steps that might add
|
||||
tagging_message: 'v1.0.0'
|
||||
|
||||
# Optional options appended to `git-push`
|
||||
# See git-push documentation for details: https://git-scm.com/docs/git-push#_options
|
||||
push_options: '--force'
|
||||
|
||||
# Optional: Disable dirty check and always try to create a commit and push
|
||||
@@ -64,7 +69,7 @@ on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- "master"
|
||||
- "main"
|
||||
|
||||
jobs:
|
||||
php-cs-fixer:
|
||||
@@ -93,6 +98,18 @@ You can use these outputs to trigger other Actions in your Workflow run based on
|
||||
|
||||
- `changes_detected`: Returns either "true" or "false" if the repository was dirty and files have changed.
|
||||
|
||||
### Example
|
||||
|
||||
```yaml
|
||||
- name: "Run if changes have been detected"
|
||||
if: steps.auto-commit-action.outputs.changes_detected == 'true'
|
||||
run: echo "Changes!"
|
||||
|
||||
- name: "Run if no changes have been detected"
|
||||
if: steps.auto-commit-action.outputs.changes_detected == 'false'
|
||||
run: echo "No Changes!"
|
||||
```
|
||||
|
||||
## Limitations & Gotchas
|
||||
|
||||
### Checkout the correct branch
|
||||
@@ -106,7 +123,7 @@ In non-`push` events, such as `pull_request`, make sure to specify the `ref` to
|
||||
ref: ${{ github.head_ref }}
|
||||
```
|
||||
|
||||
You have to do this do avoid that the `checkout`-Action clones your repository in a detached state.
|
||||
You have to do this to avoid that the `checkout`-Action clones your repository in a detached state.
|
||||
|
||||
### Commits of this Action do not trigger new Workflow runs
|
||||
|
||||
@@ -124,18 +141,74 @@ storing the token as a secret in your repository and then passing the new token
|
||||
token: ${{ secrets.PAT }}
|
||||
```
|
||||
|
||||
### Unable to commit into PRs from forks
|
||||
If you work in an organization and don't want to create a PAT from your personal account, we recommend using a [robot account](https://docs.github.com/en/github/getting-started-with-github/types-of-github-accounts) for the token.
|
||||
|
||||
GitHub currently prohibits Actions to push commits to forks, even when they created a PR and allow edits.
|
||||
See [issue #25](https://github.com/stefanzweifel/git-auto-commit-action/issues/25) for more information.
|
||||
|
||||
### Using the Action in forks from public repositories
|
||||
|
||||
By default, this Action will not run on Pull Requests which have been opened by forks. (This is a limitation by GitHub, not by us.)
|
||||
|
||||
If you want that a Workflow using this Action runs on Pull Requests opened by forks, 2 things have to be changed:
|
||||
|
||||
1. In addition to listening to the `pull_request` event in your Workflow triggers, you have to add an additional event: `pull_request_target`. You can learn more about this event in [the GitHub docs](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target).
|
||||
2. GitHub Action has to be enabled on the forked repository. \
|
||||
For security reasons, GitHub does not automatically enable GitHub Actions on forks. The user has to explicitly enable GitHub Actions in the "Actions"-tab of the forked repository. (Mention this in your projects README or CONTRIBUTING.md!)
|
||||
|
||||
After you have added the `pull_request_target` to your desired Workflow and the forked repository has enabled Actions and a new Pull Request is opened, the Workflow will run **on the forked repository**.
|
||||
|
||||
Due to the fact that the Workflow is not run on the repository the Pull Request is opened in, you won't see any status indicators inside the Pull Request.
|
||||
|
||||
#### Example
|
||||
|
||||
The following workflow runs `php-cs-fixer` (a code linter and fixer for PHP) when a `pull_request` is opened. We've added the `pull_request_target`-trigger too, to make it work for forks.
|
||||
|
||||
```yaml
|
||||
name: Format PHP
|
||||
|
||||
on: [pull_request, pull_request_target]
|
||||
|
||||
jobs:
|
||||
php-cs-fixer:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
|
||||
- name: Run php-cs-fixer
|
||||
uses: docker://oskarstark/php-cs-fixer-ga
|
||||
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: Apply php-cs-fixer changes
|
||||
```
|
||||
|
||||
Next time a user forks your project **and** enabled GitHub Actions **and** opened a Pull Request, the Workflow will run on the the forked repository and will push commits to the same branch.
|
||||
|
||||
Here's how the Pull Request will look like:
|
||||
|
||||

|
||||
|
||||
|
||||
As you can see, your contributors have to go through hoops to make this work. For Workflows which runter linters and fixers (like the example above) we recommend running them when a push happens on the `master`-branch.
|
||||
|
||||
|
||||
For more information about running Actions on forks, see [this announcement from GitHub](https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/).
|
||||
|
||||
### Push to forks from private repositories
|
||||
|
||||
By default, GitHub Actions doesn't run Workflows on forks from private repositories. To enable Actions for **private** repositories enable "Run workflows from pull requests" in your repository settings.
|
||||
|
||||
See [this announcement from GitHub](https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/) or the [GitHub docs](https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository#enabling-workflows-for-private-repository-forks) for details.
|
||||
|
||||
### Signing Commits & Other Git Command Line Options
|
||||
|
||||
Using command lines options needs to be done manually for each workflow which you require the option enabled. So for example signing commits requires you to import the gpg signature each and every time. The following list of actions are worth checking out if you need to automate these tasks regulary
|
||||
|
||||
- [Import GPG Signature](https://github.com/crazy-max/ghaction-import-gpg) (Suggested by [TGTGamer](https://github.com/tgtgamer))
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
## Troubleshooting
|
||||
### Action does not push commit to repository
|
||||
|
||||
Make sure to [checkout the correct branch](#checkout-the-correct-branch).
|
||||
@@ -176,6 +249,14 @@ Note: If you're working in an organisation and you don't want to create the PAT
|
||||
|
||||
This is due to limitations set up by GitHub, [commits of this Action do not trigger new Workflow runs](#commits-of-this-action-do-not-trigger-new-workflow-runs).
|
||||
|
||||
## Running the tests
|
||||
|
||||
The package has tests written in [bats](https://github.com/bats-core/bats-core). You can run them with the following command.
|
||||
|
||||
```shell
|
||||
npm run tests
|
||||
```
|
||||
|
||||
## Versioning
|
||||
|
||||
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/stefanzweifel/git-auto-commit-action/tags).
|
||||
|
@@ -6,7 +6,8 @@ author: Stefan Zweifel <hello@stefanzweifel.io>
|
||||
inputs:
|
||||
commit_message:
|
||||
description: Commit message
|
||||
required: true
|
||||
required: false
|
||||
default: Apply automatic changes
|
||||
branch:
|
||||
description: Git branch name, where changes should be pushed too. Required if Action is used on the `pull_request` event
|
||||
required: false
|
||||
|
@@ -39,6 +39,9 @@ _git_is_dirty() {
|
||||
_switch_to_branch() {
|
||||
echo "INPUT_BRANCH value: $INPUT_BRANCH";
|
||||
|
||||
# Fetch remote to make sure that repo can be switched to the right branch.
|
||||
git fetch;
|
||||
|
||||
# Switch to branch from current Workflow run
|
||||
git checkout $INPUT_BRANCH;
|
||||
}
|
||||
@@ -68,7 +71,7 @@ _tag_commit() {
|
||||
echo "::debug::Create tag $INPUT_TAGGING_MESSAGE";
|
||||
git -c user.name="$INPUT_COMMIT_USER_NAME" -c user.email="$INPUT_COMMIT_USER_EMAIL" tag -a "$INPUT_TAGGING_MESSAGE" -m "$INPUT_TAGGING_MESSAGE";
|
||||
else
|
||||
echo " No tagging message supplied. No tag will be added.";
|
||||
echo "No tagging message supplied. No tag will be added.";
|
||||
fi
|
||||
}
|
||||
|
||||
|
8
package.json
Normal file
8
package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"devDependencies": {
|
||||
"bats": "^1.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "rm -rf tests/tmpstubs && rm -rf tests/shellmock.* && bats tests"
|
||||
}
|
||||
}
|
439
tests/commit.bats
Normal file
439
tests/commit.bats
Normal file
@@ -0,0 +1,439 @@
|
||||
#!/usr/bin/env bats
|
||||
|
||||
setup() {
|
||||
. shellmock
|
||||
|
||||
# Build World
|
||||
export test_repository="${BATS_TEST_DIRNAME}/test_repo"
|
||||
|
||||
rm -rf "${test_repository}"
|
||||
mkdir "${test_repository}"
|
||||
touch "${test_repository}"/{a,b,c}.txt
|
||||
cd "${test_repository}"
|
||||
|
||||
git init --quiet
|
||||
git add . > /dev/null 2>&1
|
||||
|
||||
if [[ -z $(git config user.name) ]]; then
|
||||
git config --global user.email "test@github.com"
|
||||
git config --global user.name "Test Suite"
|
||||
fi
|
||||
|
||||
git commit --quiet -m "Init Repo"
|
||||
|
||||
# Set default INPUT variables
|
||||
export INPUT_REPOSITORY="${BATS_TEST_DIRNAME}/test_repo"
|
||||
export INPUT_COMMIT_MESSAGE="Commit Message"
|
||||
export INPUT_BRANCH="master"
|
||||
export INPUT_COMMIT_OPTIONS=""
|
||||
export INPUT_FILE_PATTERN="."
|
||||
export INPUT_COMMIT_USER_NAME="Test Suite"
|
||||
export INPUT_COMMIT_USER_EMAIL="test@github.com"
|
||||
export INPUT_COMMIT_AUTHOR="Test Suite <test@users.noreply.github.com>"
|
||||
export INPUT_TAGGING_MESSAGE=""
|
||||
export INPUT_PUSH_OPTIONS=""
|
||||
export INPUT_SKIP_DIRTY_CHECK=false
|
||||
|
||||
skipIfNot "$BATS_TEST_DESCRIPTION"
|
||||
|
||||
if [ -z "$TEST_FUNCTION" ]; then
|
||||
shellmock_clean
|
||||
fi
|
||||
}
|
||||
|
||||
teardown() {
|
||||
|
||||
if [ -z "$TEST_FUNCTION" ]; then
|
||||
shellmock_clean
|
||||
fi
|
||||
|
||||
rm -rf "${test_repository}"
|
||||
}
|
||||
|
||||
main() {
|
||||
bash "${BATS_TEST_DIRNAME}"/../entrypoint.sh
|
||||
}
|
||||
|
||||
|
||||
@test "clean-repo-prints-nothing-to-commit-message" {
|
||||
|
||||
run main
|
||||
|
||||
[ "$status" -eq 0 ]
|
||||
[ "${lines[0]}" = "INPUT_REPOSITORY value: ${INPUT_REPOSITORY}" ]
|
||||
[ "${lines[1]}" = "::set-output name=changes_detected::false" ]
|
||||
[ "${lines[2]}" = "Working tree clean. Nothing to commit." ]
|
||||
}
|
||||
|
||||
@test "commit-changed-files-and-push-to-remote" {
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2,3}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt M new-file-3.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type partial --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[0]}" = "INPUT_REPOSITORY value: ${INPUT_REPOSITORY}" ]
|
||||
[ "${lines[1]}" = "::set-output name=changes_detected::true" ]
|
||||
[ "${lines[2]}" = "INPUT_BRANCH value: master" ]
|
||||
[ "${lines[3]}" = "INPUT_FILE_PATTERN: ." ]
|
||||
[ "${lines[4]}" = "INPUT_COMMIT_OPTIONS: " ]
|
||||
[ "${lines[5]}" = "::debug::Apply commit options " ]
|
||||
[ "${lines[6]}" = "INPUT_TAGGING_MESSAGE: " ]
|
||||
[ "${lines[7]}" = "No tagging message supplied. No tag will be added." ]
|
||||
[ "${lines[8]}" = "INPUT_PUSH_OPTIONS: " ]
|
||||
[ "${lines[9]}" = "::debug::Apply push options " ]
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch master" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:master --tags" ]
|
||||
}
|
||||
|
||||
@test "skip-dirty-on-clean-repo-failure" {
|
||||
|
||||
INPUT_SKIP_DIRTY_CHECK=true
|
||||
|
||||
shellmock_expect git --type exact --match "status -s ."
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type exact --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:master --tags" ]
|
||||
|
||||
# Failed Exit Code
|
||||
[ "$status" -ne 0 ]
|
||||
|
||||
[ "${lines[0]}" = "INPUT_REPOSITORY value: ${INPUT_REPOSITORY}" ]
|
||||
[ "${lines[1]}" = "::set-output name=changes_detected::true" ]
|
||||
[ "${lines[2]}" = "INPUT_BRANCH value: master" ]
|
||||
[ "${lines[3]}" = "INPUT_FILE_PATTERN: ." ]
|
||||
[ "${lines[4]}" = "INPUT_COMMIT_OPTIONS: " ]
|
||||
[ "${lines[5]}" = "::debug::Apply commit options " ]
|
||||
}
|
||||
|
||||
@test "git-add-file-pattern-is-applied" {
|
||||
|
||||
INPUT_FILE_PATTERN="*.txt *.html"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2}.php
|
||||
touch "${test_repository}"/new-file-{1,2}.html
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.html M new-file-2.html" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type partial --match "add"
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[3]}" = "INPUT_FILE_PATTERN: *.txt *.html" ]
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch master" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- a.txt b.txt c.txt new-file-1.html new-file-2.html" ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add a.txt b.txt c.txt new-file-1.html new-file-2.html" ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:master --tags" ]
|
||||
}
|
||||
|
||||
@test "git-commit-options-are-applied" {
|
||||
|
||||
INPUT_COMMIT_OPTIONS="--no-verify --signoff"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type partial --match "add"
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
[ "${lines[4]}" = "INPUT_COMMIT_OPTIONS: --no-verify --signoff" ]
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch master" ]
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com> --no-verify --signoff" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:master --tags" ]
|
||||
}
|
||||
|
||||
@test "commit-user-and-author-settings-are-applied" {
|
||||
|
||||
INPUT_COMMIT_USER_NAME="A Single Test"
|
||||
INPUT_COMMIT_USER_EMAIL="single-test@github.com"
|
||||
INPUT_COMMIT_AUTHOR="A Single Test <single@users.noreply.github.com>"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type partial --match "add"
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch master" ]
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=A Single Test -c user.email=single-test@github.com commit -m Commit Message --author=A Single Test <single@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:master --tags" ]
|
||||
}
|
||||
|
||||
@test "can-create-tag" {
|
||||
|
||||
INPUT_TAGGING_MESSAGE="v1.0.0"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2,3}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt M new-file-3.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type partial --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[6]}" = "INPUT_TAGGING_MESSAGE: v1.0.0" ]
|
||||
[ "${lines[7]}" = "::debug::Create tag v1.0.0" ]
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch master" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com tag -a v1.0.0 -m v1.0.0" ]
|
||||
[ "${capture[6]}" = "git-stub push --set-upstream origin HEAD:master --tags" ]
|
||||
|
||||
}
|
||||
|
||||
@test "git-push-options-are-applied" {
|
||||
|
||||
INPUT_PUSH_OPTIONS="--force"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2,3}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt M new-file-3.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout master"
|
||||
shellmock_expect git --type partial --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[8]}" = "INPUT_PUSH_OPTIONS: --force" ]
|
||||
[ "${lines[9]}" = "::debug::Apply push options --force" ]
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch master" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout master" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:master --tags --force" ]
|
||||
|
||||
}
|
||||
|
||||
@test "can-checkout-different-branch" {
|
||||
|
||||
INPUT_BRANCH="foo"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2,3}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt M new-file-3.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout foo"
|
||||
shellmock_expect git --type partial --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push --set-upstream origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[0]}" = "INPUT_REPOSITORY value: ${INPUT_REPOSITORY}" ]
|
||||
[ "${lines[1]}" = "::set-output name=changes_detected::true" ]
|
||||
[ "${lines[2]}" = "INPUT_BRANCH value: foo" ]
|
||||
[ "${lines[3]}" = "INPUT_FILE_PATTERN: ." ]
|
||||
[ "${lines[4]}" = "INPUT_COMMIT_OPTIONS: " ]
|
||||
[ "${lines[5]}" = "::debug::Apply commit options " ]
|
||||
[ "${lines[6]}" = "INPUT_TAGGING_MESSAGE: " ]
|
||||
[ "${lines[7]}" = "No tagging message supplied. No tag will be added." ]
|
||||
[ "${lines[8]}" = "INPUT_PUSH_OPTIONS: " ]
|
||||
[ "${lines[9]}" = "::debug::Apply push options " ]
|
||||
[ "${lines[10]}" = "::debug::Push commit to remote branch foo" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout foo" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push --set-upstream origin HEAD:foo --tags" ]
|
||||
|
||||
}
|
||||
|
||||
@test "can-work-with-empty-branch-name" {
|
||||
|
||||
INPUT_BRANCH=""
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2,3}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt M new-file-3.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout"
|
||||
shellmock_expect git --type partial --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[0]}" = "INPUT_REPOSITORY value: ${INPUT_REPOSITORY}" ]
|
||||
[ "${lines[1]}" = "::set-output name=changes_detected::true" ]
|
||||
[ "${lines[2]}" = "INPUT_BRANCH value: " ]
|
||||
[ "${lines[3]}" = "INPUT_FILE_PATTERN: ." ]
|
||||
[ "${lines[4]}" = "INPUT_COMMIT_OPTIONS: " ]
|
||||
[ "${lines[5]}" = "::debug::Apply commit options " ]
|
||||
[ "${lines[6]}" = "INPUT_TAGGING_MESSAGE: " ]
|
||||
[ "${lines[7]}" = "No tagging message supplied. No tag will be added." ]
|
||||
[ "${lines[8]}" = "INPUT_PUSH_OPTIONS: " ]
|
||||
[ "${lines[9]}" = "::debug::Apply push options " ]
|
||||
[ "${lines[10]}" = "::debug::git push origin" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub push origin" ]
|
||||
}
|
||||
|
||||
@test "can-work-with-empty-branch-name-and-tags" {
|
||||
|
||||
INPUT_BRANCH=""
|
||||
INPUT_TAGGING_MESSAGE="v2.0.0"
|
||||
|
||||
touch "${test_repository}"/new-file-{1,2,3}.txt
|
||||
|
||||
shellmock_expect git --type partial --output " M new-file-1.txt M new-file-2.txt M new-file-3.txt" --match "status"
|
||||
shellmock_expect git --type exact --match "fetch"
|
||||
shellmock_expect git --type exact --match "checkout"
|
||||
shellmock_expect git --type partial --match "add ."
|
||||
shellmock_expect git --type partial --match '-c'
|
||||
shellmock_expect git --type partial --match 'push origin'
|
||||
|
||||
run main
|
||||
|
||||
echo "$output"
|
||||
|
||||
# Success Exit Code
|
||||
[ "$status" = 0 ]
|
||||
|
||||
[ "${lines[0]}" = "INPUT_REPOSITORY value: ${INPUT_REPOSITORY}" ]
|
||||
[ "${lines[1]}" = "::set-output name=changes_detected::true" ]
|
||||
[ "${lines[2]}" = "INPUT_BRANCH value: " ]
|
||||
[ "${lines[3]}" = "INPUT_FILE_PATTERN: ." ]
|
||||
[ "${lines[4]}" = "INPUT_COMMIT_OPTIONS: " ]
|
||||
[ "${lines[5]}" = "::debug::Apply commit options " ]
|
||||
[ "${lines[6]}" = "INPUT_TAGGING_MESSAGE: v2.0.0" ]
|
||||
[ "${lines[7]}" = "::debug::Create tag v2.0.0" ]
|
||||
[ "${lines[8]}" = "INPUT_PUSH_OPTIONS: " ]
|
||||
[ "${lines[9]}" = "::debug::Apply push options " ]
|
||||
[ "${lines[10]}" = "::debug::git push origin --tags" ]
|
||||
|
||||
|
||||
shellmock_verify
|
||||
[ "${capture[0]}" = "git-stub status -s -- ." ]
|
||||
[ "${capture[1]}" = "git-stub fetch" ]
|
||||
[ "${capture[2]}" = "git-stub checkout" ]
|
||||
[ "${capture[3]}" = "git-stub add ." ]
|
||||
[ "${capture[4]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com commit -m Commit Message --author=Test Suite <test@users.noreply.github.com>" ]
|
||||
[ "${capture[5]}" = "git-stub -c user.name=Test Suite -c user.email=test@github.com tag -a v2.0.0 -m v2.0.0" ]
|
||||
[ "${capture[6]}" = "git-stub push origin --tags" ]
|
||||
|
||||
}
|
8
yarn.lock
Normal file
8
yarn.lock
Normal file
@@ -0,0 +1,8 @@
|
||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
bats@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/bats/-/bats-1.1.0.tgz#6fc44f283ed4e7af2b6ffac93ec5026a1acbdc66"
|
||||
integrity sha512-1pA29OhDByrUtAXX+nmqZxgRgx2y8PvuZzbLJVjd2dpEDVDvz0MjcBMdmIPNq5lC+tG53G+RbeRsbIlv3vw7tg==
|
Reference in New Issue
Block a user