diff --git a/.github/workflows/close-stale.yml b/.github/workflows/close-stale.yml index 05ceae509f..d1ed2bef19 100644 --- a/.github/workflows/close-stale.yml +++ b/.github/workflows/close-stale.yml @@ -28,6 +28,7 @@ jobs: Are you familiar with this package? Consider [becoming a component owner](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CONTRIBUTING.md#becoming-a-component-owner).' close-issue-message: 'This issue was closed because no owner or sponsor has been found after 14 days' + stale-issue-label: pkg-status:unmaintained:autoclose-scheduled only-labels: pkg-status:unmaintained,feature-request exempt-issue-labels: bug,has:sponsor,type:semconv-update - uses: actions/stale@v9 @@ -38,5 +39,6 @@ jobs: Are you familiar with this package? Consider [becoming a component owner](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/CONTRIBUTING.md#becoming-a-component-owner).' close-pr-message: 'This issue was closed because no owner or sponsor has been found after 14 days' + stale-pr-label: pkg-status:unmaintained:autoclose-scheduled only-labels: pkg-status:unmaintained - exempt-pr-labels: bug,has:sponsor,type:semconv-update + exempt-pr-labels: bug,has:sponsor,type:semconv-update,dependencies,autorelease:pending diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 6e877b65fa..12fd7ec186 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -7,6 +7,8 @@ name: Run Release Please jobs: release-please: runs-on: ubuntu-latest + permissions: + id-token: write steps: # The logic below handles the npm publication: - name: Checkout Repository @@ -75,4 +77,5 @@ jobs: if: ${{ steps.release.outputs.releases_created }} env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + NPM_CONFIG_PROVENANCE: true run: npx lerna publish from-package --no-push --no-private --no-git-tag-version --no-verify-access --yes