[WIP] blog for extending meshery models #4320
Workflow file for this run
This file contains 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: Label Triggered Workflow | |
on: | |
issues: | |
types: | |
- labeled | |
pull_request_target: | |
types: | |
- labeled | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
ref: master | |
- name: Label Commenter | |
uses: peaceiris/actions-label-commenter@v1 | |
automate_invite: | |
if: contains(github.event.issue.labels.*.name, 'issue/invite') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Invite on label | |
uses: vj-abigo/[email protected] | |
with: | |
organization: layer5io | |
label: issue/invite | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
comment: "We are sending you an invitation to join the Layer5 GitHub Organization. :partying_face: <b>Welcome to the community! 🎉</b><br /><br /> Be sure to :star: [star the projects](../stargazers), if you haven't already.<br />" | |
env: | |
INVITE_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }} | |
- name: View context attributes | |
uses: actions/github-script@master | |
id: set-url | |
with: | |
script: | | |
const url = context.issue.url | |
return url | |
result-encoding: string | |
- name: Get url | |
run: | | |
echo "URL=${{steps.set-url.outputs.result}}" >> $GITHUB_ENV | |
echo "ISSUE=${{steps.set-url.outputs.url}}" >> $GITHUB_ENV | |
- name: Notify slack | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
uses: pullreminders/slack-action@master | |
with: | |
args: '{\"channel\":\"CF9RK4H89\",\"text\":\"An invitation to join the layer5io GitHub org has been sent\"}' | |
# to the author of: ${{env.URL}}\"}' |