Skip to content

changing from pull requests to pull request #2

changing from pull requests to pull request

changing from pull requests to pull request #2

Workflow file for this run

name: Sample github action
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Hello world
run : echo "Hello world"
shell: bash
goodbye:
runs-on: ububntu-latest
steps:
- name: Goodbye
run: echo "goodbye"
shell: bash