Skip to content
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

Stop initializing repo #15

Merged
merged 12 commits into from
Apr 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
report-updated-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: AurorNZ/report-updated-dependencies@v1
```

Expand All @@ -35,6 +36,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: AurorNZ/report-updated-dependencies@v1
```

Expand Down
5 changes: 3 additions & 2 deletions __test__/verify-no-unstaged-changes.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/bin/bash
# from https://github.com/actions/checkout/blob/25a956c84d5dd820d28caab9f86b8d183aeeff3d/__test__/verify-no-unstaged-changes.sh

git add .
git add . --renormalize

if [[ "$(git status --porcelain)" != "" ]]; then
DIFF=$(git diff --staged --text --ignore-all-space)
if [[ -z '$DIFF' ]]; then
echo ----------------------------------------
echo git status
echo ----------------------------------------
Expand Down
7 changes: 7 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ inputs:
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
default: ${{ github.token }}
required: true
path:
description: 'Relative path under $GITHUB_WORKSPACE to place the repository'
changelogs:
description: >
Controls whether to fetch release notes from updated dependencies.
Fetching dependencies can be quite slow on larger changesets
default: true
runs:
using: 'node12'
main: 'dist/index.js'
18,560 changes: 9,339 additions & 9,221 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

14,999 changes: 3 additions & 14,996 deletions dist/licenses.txt

Large diffs are not rendered by default.

Loading