mirror of
https://github.com/hashicorp/packer.git
synced 2026-07-09 01:04:23 -04:00
Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.2.2` | `4.3.1` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `4.0.2` | `4.3.1` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `1.27.0` | `1.27.1` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.0` | `4.6.2` | | [actions/github-script](https://github.com/actions/github-script) | `7.0.1` | `7.1.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.8` | `4.3.0` | | [ncipollo/release-action](https://github.com/ncipollo/release-action) | `1.15.0` | `1.21.0` | Updates `actions/checkout` from 4.2.2 to 4.3.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](11bd71901b...34e114876b) Updates `aws-actions/configure-aws-credentials` from 4.0.2 to 4.3.1 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](e3dd6a429d...7474bc4690) Updates `slackapi/slack-github-action` from 1.27.0 to 1.27.1 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](37ebaef184...fcfb566f8b) Updates `actions/upload-artifact` from 4.6.0 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](65c4c4a1dd...ea165f8d65) Updates `actions/github-script` from 7.0.1 to 7.1.0 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](60a0d83039...f28e40c7f3) Updates `actions/download-artifact` from 4.1.8 to 4.3.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](fa0a91b85d...d3f86a106a) Updates `ncipollo/release-action` from 1.15.0 to 1.21.0 - [Release notes](https://github.com/ncipollo/release-action/releases) - [Commits](cdcc88a9ac...339a81892b) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: slackapi/slack-github-action dependency-version: 1.27.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/github-script dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: ncipollo/release-action dependency-version: 1.21.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
57 lines
2.3 KiB
YAML
57 lines
2.3 KiB
YAML
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
issue_triage:
|
|
name: Issue Opened Triage
|
|
permissions:
|
|
contents: read
|
|
issues: write # for github/issue-labeler to create or remove labels
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
- uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/labeler-issue-triage.yml
|
|
enable-versioned-regex: 0
|
|
label-question:
|
|
name: Redirect to discuss
|
|
permissions:
|
|
contents: read
|
|
issues: write # for actions/github-script to create comments and add labels
|
|
if: contains(github.event.issue.labels.*.name, 'question')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
|
|
with:
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: `
|
|
Hi 👋 thanks for reaching out.
|
|
|
|
For general questions we recommend reaching out to the [community forum](https://discuss.hashicorp.com/c/packer) for greater visibility.
|
|
As the GitHub issue tracker is only watched by a small subset of maintainers and is really reserved for bugs and enhancements, you'll have a better chance of finding someone who can help you in the forum.
|
|
We'll mark this issue as needs-reply to help inform maintainers that this question is awaiting a response.
|
|
If no activity is taken on this question within 30 days it will be automatically closed.
|
|
|
|
If you find the forum to be more helpful or if you've found the answer to your question elsewhere please feel free to post a response and close the issue.`
|
|
})
|
|
|
|
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
|
|
with:
|
|
script: |
|
|
github.rest.issues.addLabels({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
labels: ['needs-reply']
|
|
})
|
|
|