Skip to content

Add workflows for devops itself #3

Add workflows for devops itself

Add workflows for devops itself #3

Workflow file for this run

name: perl
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
create:
jobs:
notify:
runs-on: ubuntu-latest
continue-on-error: true
if: ${{ always() }}
steps:
- uses: actions/checkout@v2
- uses: ./github-actions/irc-notifications
with:
target-notifications: true
ci:
runs-on: 'ubuntu-latest'
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
needs: notify
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Run yamllint on actions
run: |
yamllint --format github github-actions
build-status:
runs-on: ubuntu-latest
continue-on-error: true
if: ${{ always() }}
needs: [ 'ci' ]
steps:
- uses: actions/checkout@v2
- uses: ./github-actions/irc-notifications
with:
target-build-status: true
needs: ${{ toJSON(needs) }}