Skip to content

new dockerfiles for Java22 #48

new dockerfiles for Java22

new dockerfiles for Java22 #48

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Notify Issue
on:
pull_request:
types: [ opened ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
issue_created:
runs-on: ubuntu-latest
steps:
- name: slack-notify
uses: slackapi/slack-github-action@v1.18.0
with:
payload: |
{
"Issue": "${{github.event.pull_request.html_url}}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}