ci(deps): bump @aws-sdk/client-s3 from 3.957.0 to 3.958.0 #3362
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Misc - Pull Request to master branch | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| # Only following types are handled by the action, but one can default to all as well | |
| types: [opened, reopened, edited, synchronize] | |
| jobs: | |
| # Refs: https://github.com/release-drafter/release-drafter | |
| misc-pr_to_master-labeling: | |
| runs-on: ubuntu-latest | |
| if: > | |
| !contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' ) | |
| steps: | |
| - uses: release-drafter/release-drafter@v6 | |
| with: | |
| disable-releaser: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| misc-pr_to_master-check-title: | |
| runs-on: ubuntu-latest | |
| # Ignore these cases | |
| # - Out of changelog target | |
| # - Created by "dependabot", "github-actions" | |
| if: > | |
| ( | |
| !contains( github.event.pull_request.labels.*.name, 'flag/exclude-from-changelog' ) | |
| && !startsWith( github.head_ref, 'dependabot/' ) | |
| && !contains( github.actor, 'github-actions' ) | |
| ) | |
| steps: | |
| - uses: amannn/[email protected] | |
| with: | |
| types: | | |
| feat | |
| imprv | |
| fix | |
| support | |
| chore | |
| ci | |
| docs | |
| test | |
| requireScope: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| misc-pr_to_master-slack-notification: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Slack Notification | |
| uses: act10ns/[email protected] | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| with: | |
| # "status" is used to be set notification's color. | |
| # When "status" is "success", "failure", or "canceled", color is green, red, or yellow; otherwise it is #C0C0C0C0. | |
| # see. https://github.com/act10ns/slack/blob/da3191ebe2e67f49b46880b4633f5591a96d1d33/src/slack.ts#L23 | |
| status: updated | |
| channel: '#srv' |