generated from actionsflow/actionsflow-workflow-default
-
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.
- Loading branch information
0 parents
commit e15ffd6
Showing
10 changed files
with
10,514 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Reset Actionsflow Cache | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
reset: | ||
runs-on: ubuntu-latest | ||
name: Reset Actionsflow Cache | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Actionsflow Clean | ||
uses: actionsflow/actionsflow-action@v1 | ||
with: | ||
args: clean | ||
json-secrets: ${{ toJSON(secrets) }} |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Update All Dependencies | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Checkout Branch | ||
run: git checkout main | ||
- name: Configure CI Git User | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email github-actions[bot]@users.noreply.github.com | ||
- name: Update | ||
run: | | ||
npm ci | ||
npm update | ||
- name: Git Push | ||
run: | | ||
git add package.json package-lock.json | ||
git commit -m "chore: update dependencies" | ||
git push |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Upgrade Local Actionsflow | ||
on: | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [new_version_with_actionsflow] | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Checkout Branch | ||
run: git checkout main | ||
- name: Configure CI Git User | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email github-actions[bot]@users.noreply.github.com | ||
- name: Update | ||
run: | | ||
npm ci | ||
npm update actionsflow | ||
- name: Git Push | ||
run: | | ||
git add package.json package-lock.json | ||
git commit -m "chore: upgrade actionsflow dependencies" | ||
git push |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Actionsflow | ||
on: | ||
# schedule: | ||
# - cron: "*/15 * * * *" | ||
push: | ||
branches: | ||
- main | ||
repository_dispatch: | ||
workflow_dispatch: | ||
inputs: | ||
include: | ||
description: "--include: workflow file filter, you can use glob format to filter your workflows, the default value is empty value, means no filter will be using" | ||
required: false | ||
default: "" | ||
force: | ||
description: "--force: whether force to run workflow, true or false" | ||
required: false | ||
default: "false" | ||
verbose: | ||
description: "--verbose: debug workflow, true or false" | ||
required: false | ||
default: "false" | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
name: Run | ||
concurrency: actionsflow | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run Actionsflow | ||
uses: actionsflow/[email protected] | ||
with: | ||
args: "build --include ${{ github.event.inputs.include || ''}} -f ${{github.event.inputs.force=='true' && 'true' || 'false'}} --verbose ${{github.event.inputs.verbose=='true' && 'true' || 'false'}}" | ||
json-secrets: ${{ toJSON(secrets) }} | ||
json-github: ${{ toJSON(github) }} | ||
- name: Setup act | ||
uses: actionsflow/[email protected] | ||
- name: Run act | ||
run: act --workflows ./dist/workflows --secret-file ./dist/.secrets --eventpath ./dist/event.json --env-file ./dist/.env -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest |
Oops, something went wrong.