mirror of
https://github.com/tenrok/axios.git
synced 2026-05-15 11:59:42 +03:00
7764844686
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [ffurrer2/extract-release-notes](https://github.com/ffurrer2/extract-release-notes). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `ffurrer2/extract-release-notes` from 2 to 3 - [Release notes](https://github.com/ffurrer2/extract-release-notes/releases) - [Changelog](https://github.com/ffurrer2/extract-release-notes/blob/main/CHANGELOG.md) - [Commits](https://github.com/ffurrer2/extract-release-notes/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ffurrer2/extract-release-notes dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jay <jasonsaayman@gmail.com>
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: notify
|
|
|
|
on:
|
|
#workflow_run:
|
|
# workflows: ["publish"]
|
|
# types:
|
|
# - completed
|
|
#repository_dispatch:
|
|
# types: [ notify ]
|
|
#release:
|
|
# types: [published]
|
|
# branches:
|
|
# - main
|
|
# - 'v**'
|
|
#push:
|
|
# tags:
|
|
# - 'v[0-9]+.[0-9]+.[0-9]+'
|
|
# branches:
|
|
# - main
|
|
# - 'v**'
|
|
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
required: false
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
#if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
#- name: Dump GitHub context
|
|
# env:
|
|
# GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
# run: echo "$GITHUB_CONTEXT"
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: git config
|
|
run: |
|
|
git config user.name "${GITHUB_ACTOR}"
|
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
- name: Setup node
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
- run: npm ci
|
|
- name: Notify published PRs
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: node ./bin/actions/notify_published.js --tag ${{ github.event.inputs.tag || github.event.release.tag_name }}
|