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

ACNA- 1833 | Implementing external workflows #9

Closed
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Daily - Do npm install and run all unit tests
on:
schedule:
# run daily at midnight
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
build:
uses: adobe/aio-reusable-workflows/.github/workflows/daily.yml@main
secrets: inherit
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/on-push-publish-to-npm.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: on-push-publish-to-npm

on:
push:
branches:
- master # Change this if not your default branch
paths:
- 'package.json'
- "package.json"

jobs:
publish:
uses: adobe/aio-reusable-workflows/.github/workflows/on-push-publish-to-npm.yml@main
secrets: inherit
secrets: inherit
15 changes: 8 additions & 7 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
name: publish-prerelease

on:
workflow_dispatch:
inputs:
pre-release-tag:
description: 'The pre-release tag use in the version'
description: "The pre-release tag use in the version"
required: false
default: 'pre'
default: "pre"
dist-tag:
description: 'The dist-tag use'
description: "The dist-tag use"
required: false
default: 'next'
default: "next"
dependencies-to-update:
description: 'csv of dependencies to update with the dist-tag'
description: "csv of dependencies to update with the dist-tag"
required: false
default: '@adobe/aio-lib-core-config,@adobe/aio-lib-core-logging,@adobe/aio-lib-env'
default: "@adobe/aio-lib-core-config,@adobe/aio-lib-core-logging,@adobe/aio-lib-env"

jobs:
checkout:
uses: adobe/aio-reusable-workflows/.github/workflows/prerelease.yml@main
secrets: inherit
secrets: inherit