Skip to content
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
26 changes: 26 additions & 0 deletions .github/workflows/auto-security-release-js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Auto Security Release (JavaScript)
permissions:
contents: write
pull-requests: write
on:
schedule:
- cron: "0 19 * * 1" # Every Monday at 2pm UTC-5 (7pm UTC)
workflow_dispatch:
inputs:
force:
description: "Force release even with non-dependabot commits"
type: boolean
default: false
jobs:
run:
permissions:
contents: write
pull-requests: write
uses: aws-geospatial/github-workflows-for-amazon-location/.github/workflows/auto-security-release.yml@main
with:
working-directory: javascript
tag-prefix: "js-v"
force: ${{ inputs.force || false }}
secrets:
APP_ID: ${{ secrets.AUTO_RELEASE_BOT_APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.AUTO_RELEASE_BOT_PRIVATE_KEY }}
26 changes: 26 additions & 0 deletions .github/workflows/auto-security-release-kotlin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Auto Security Release (Kotlin)
permissions:
contents: write
pull-requests: write
on:
schedule:
- cron: "0 19 * * 1" # Every Monday at 2pm UTC-5 (7pm UTC)
workflow_dispatch:
inputs:
force:
description: "Force release even with non-dependabot commits"
type: boolean
default: false
jobs:
run:
permissions:
contents: write
pull-requests: write
uses: aws-geospatial/github-workflows-for-amazon-location/.github/workflows/auto-security-release.yml@main
with:
working-directory: kotlin
tag-prefix: "kotlin-v"
force: ${{ inputs.force || false }}
secrets:
APP_ID: ${{ secrets.AUTO_RELEASE_BOT_APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.AUTO_RELEASE_BOT_PRIVATE_KEY }}
26 changes: 26 additions & 0 deletions .github/workflows/auto-security-release-swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Auto Security Release (Swift)
permissions:
contents: write
pull-requests: write
on:
schedule:
- cron: "0 19 * * 1" # Every Monday at 2pm UTC-5 (7pm UTC)
workflow_dispatch:
inputs:
force:
description: "Force release even with non-dependabot commits"
type: boolean
default: false
jobs:
run:
permissions:
contents: write
pull-requests: write
uses: aws-geospatial/github-workflows-for-amazon-location/.github/workflows/auto-security-release.yml@main
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'll need to use the working-directory input on this because polyline is a mono-repo package

with:
working-directory: swift
tag-prefix: ""
force: ${{ inputs.force || false }}
secrets:
APP_ID: ${{ secrets.AUTO_RELEASE_BOT_APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.AUTO_RELEASE_BOT_PRIVATE_KEY }}
17 changes: 17 additions & 0 deletions .github/workflows/dependabot-retry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Dependabot Auto Retry
permissions:
security-events: write
pull-requests: read
on:
schedule:
- cron: "0 9 * * *"
workflow_dispatch:
jobs:
run:
permissions:
security-events: write
pull-requests: read
uses: aws-geospatial/github-workflows-for-amazon-location/.github/workflows/dependabot-retry.yml@main
secrets:
APP_ID: ${{ secrets.AUTO_RELEASE_BOT_APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.AUTO_RELEASE_BOT_PRIVATE_KEY }}
Loading