diff --git a/.github/workflows/package-dist.yml b/.github/workflows/package-dist.yml index ab1dd1f..9eaec54 100644 --- a/.github/workflows/package-dist.yml +++ b/.github/workflows/package-dist.yml @@ -51,3 +51,4 @@ jobs: git add THIRD-PARTY git commit -m "chore: update dist and licenses" || echo "No changes to commit" git push --force origin + diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..0ead34b --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,43 @@ +--- +name: Release Please +on: + push: + branches: + - main + +permissions: + id-token: write + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + aws-region: us-west-2 + role-to-assume: ${{ secrets.SECRETS_AWS_PACKAGING_ROLE_TO_ASSUME }} + role-duration-seconds: 900 + role-session-name: ${{ github.run_id }} + + - name: Get git credentials + uses: aws-actions/aws-secretsmanager-get-secrets@v2 + with: + parse-json-secrets: true + secret-ids: | + OSDS,arn:aws:secretsmanager:us-west-2:206735643321:secret:github-aws-sdk-osds-automation-gebs9n + + - name: Run release-please + uses: googleapis/release-please-action@v4 + with: + release-type: node + token: ${{ env.OSDS_ACCESS_TOKEN }} + config-file: release-please-config.json + manifest-file: .release-please-manifest.json diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..0ff76e8 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,5 @@ +{ + ".release-please-manifest.json": "6.0.0", + "package.json": "6.0.0", + ".": "6.0.0" +} diff --git a/package.json b/package.json index 80f21bd..41d24b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stale-issue-cleanup", - "version": "1.0.0", + "version": "6.0.0", "description": "GitHub Action that cleans up old and response-reqested issues", "private": true, "main": "dist/entrypoint.js", diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..8df8757 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,13 @@ +{ + "packages": { + ".": { + "changelog-path": "CHANGELOG.md", + "release-type": "node", + "bump-minor-pre-major": false, + "bump-patch-for-minor-pre-major": false, + "draft": false, + "prerelease": false + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +} diff --git a/src/entrypoint.ts b/src/entrypoint.ts index c271d62..6fcf2d6 100644 --- a/src/entrypoint.ts +++ b/src/entrypoint.ts @@ -1,3 +1,4 @@ +// Test comment in entrypoint.ts import * as core from '@actions/core'; import * as github from '@actions/github'; import { closeIssue, getIssues, getTimelineEvents, hasEnoughUpvotes, markStale, removeLabel } from './github';