forked from GSA/uswds-sf-lightning-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"GSA#99 updated to use newer actions"
- Loading branch information
1 parent
308f77d
commit 04e376a
Showing
1 changed file
with
69 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ name: | |
|
||
on: | ||
## this ensures the update runs against the fork branch | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
|
@@ -17,16 +18,73 @@ jobs: | |
contents: read | ||
pull-requests: write | ||
steps: | ||
- name: Checkout | ||
uses: | ||
actions/checkout@v2 | ||
# Make sure the actual branch is checked out when running on pull requests | ||
- name: Set date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y%m%d')" | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
ref: ${{github.event.pull_request.head.ref}} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
node-version: 18 | ||
- run: npm ci | ||
working-directory: ./ | ||
- name: Prettify code | ||
run: | | ||
npm i | ||
npx prettier --write . | ||
run: npx prettier --write . | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
# Optional. Commit message for the created commit. | ||
# Defaults to "Apply automatic changes" | ||
commit_message: Automated data pull ${{ steps.nvm.outputs.date }} | ||
|
||
# Optional. Local and remote branch name where commit is going to be pushed | ||
# to. Defaults to the current branch. | ||
# You might need to set `create_branch: true` if the branch does not exist. | ||
# branch: feature-123 | ||
|
||
# Optional. Options used by `git-commit`. | ||
# See https://git-scm.com/docs/git-commit#_options | ||
commit_options: "--no-verify --signoff" | ||
|
||
# Optional glob pattern of files which should be added to the commit | ||
# Defaults to all (.) | ||
# 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: docs/_data/*.yml docs/_data/legacy/*.yml | ||
|
||
# Optional. Local file path to the repository. | ||
# Defaults to the root of the repository. | ||
repository: . | ||
|
||
# Optional commit user and author settings | ||
commit_user_name: My GitHub Actions Bot # defaults to "github-actions[bot]" | ||
commit_user_email: [email protected] # defaults to "github-actions [bot]@users.noreply.github.com" | ||
commit_author: Author <[email protected]> # defaults to author of the commit that triggered the run | ||
|
||
# Optional. Option used by `git-status` to determine if the repository is | ||
# dirty. See https://git-scm.com/docs/git-status#_options | ||
status_options: "--untracked-files=no" | ||
|
||
# Optional. Options used by `git-add`. | ||
# See https://git-scm.com/docs/git-add#_options | ||
add_options: "-u" | ||
|
||
# Optional. Options used by `git-push`. | ||
# See https://git-scm.com/docs/git-push#_options | ||
push_options: "--force" | ||
|
||
# Optional. Disable dirty check and always try to create a commit and push | ||
skip_dirty_check: false | ||
|
||
# Optional. Skip internal call to `git fetch` | ||
skip_fetch: true | ||
|
||
# Optional. Skip internal call to `git checkout` | ||
skip_checkout: true | ||
|
||
# Optional. Prevents the shell from expanding filenames. | ||
# Details: https://www.gnu.org/software/bash/manual/html_node/Filename-Expansion. html | ||
disable_globbing: true | ||
|
||
# Optional. Create given branch name in local and remote repository. | ||
create_branch: true |