mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
35 lines
1 KiB
YAML
35 lines
1 KiB
YAML
name: complain
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
projects:
|
|
required: true
|
|
type: string
|
|
platform:
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
complain:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: rtCamp/action-slack-notify@v2
|
|
if: ${{ env.SLACK_WEBHOOK != '' }}
|
|
env:
|
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
|
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
|
|
SLACK_MESSAGE: new-version:${{ inputs.projects }} (${{ inputs.platform }}) ${{ steps.status.outputs.status }}
|
|
SLACK_COLOR: ${{ steps.status.outputs.status }}
|
|
- uses: actions/checkout@v3
|
|
- uses: JasonEtco/create-an-issue@v2
|
|
with:
|
|
filename: ./.github/NEW_VERSION_ISSUE_TEMPLATE.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
PACKAGE: ${{ inputs.projects }} (${{ inputs.platform }})
|
|
URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
|