Skip to content

Commit

Permalink
test some things
Browse files Browse the repository at this point in the history
  • Loading branch information
CriesofCarrots committed May 8, 2021
1 parent 17a13f4 commit f0ff685
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pull-request-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
check_non_docs:
outputs:
run_job: ${{ steps.check_files.outputs.run_all_github_action_checks }}
run_all_github_action_checks: ${{ steps.check_files.outputs.run_all_github_action_checks }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -23,8 +23,8 @@ jobs:
- name: check modified files
id: check_files
run: |
git diff --name-only HEAD^ HEAD > files.txt
echo "::set-output name=run_all_github_action_checks::true"
git diff --name-only HEAD^ HEAD > files.txt
while IFS= read -r file
do
if [[ $file != docs/** ]]; then
Expand All @@ -34,7 +34,6 @@ jobs:
fi
done < files.txt
all_github_action_checks:
runs-on: ubuntu-latest
needs: check_non_docs
Expand Down
4 changes: 2 additions & 2 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pull_request_rules:
- check-success=Travis CI - Pull Request
- check-success=all_github_action_checks
- label=automerge
- author≠@dont-squash-my-commits
# - author≠@dont-squash-my-commits
actions:
merge:
method: squash
Expand All @@ -19,7 +19,7 @@ pull_request_rules:
- check-success=Travis CI - Pull Request
- check-success=all_github_action_checks
- label=automerge
- author=@dont-squash-my-commits
# - author=@dont-squash-my-commits
actions:
merge:
method: rebase
Expand Down

0 comments on commit f0ff685

Please sign in to comment.