script updated for better testing #22
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
# This is a basic workflow to help you get started with Actions | |
name: testing_pipeline | |
# Controls when the action will run. | |
# Triggers the workflow on push or pull request | |
# events but only for the devel branch | |
on: | |
pull_request_target: | |
branches: | |
- devel | |
# A workflow run is made up of one or more jobs | |
# that can run sequentially or in parallel | |
jobs: | |
# This will create messages for first time contributers and direct them to the Discord server | |
welcome: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/first-interaction@main | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-message: |- | |
Congrats on opening your first pull request and thank you for taking the time to help improve Ansible-Lockdown! | |
Please join in the conversation happening on the [Discord Server](https://discord.gg/ArDjfhY8) as well. | |