This commit is contained in:
ZanzyTHEbar 2022-05-05 17:42:07 +02:00
parent 931aa883a7
commit 3facf6377f
3 changed files with 18 additions and 2 deletions

View File

@ -1,6 +1,14 @@
# .github/workflows/github-actions-change-variable.yml # .github/workflows/github-actions-change-variable.yml
on: [push]
name: Variable Substitution name: Variable Substitution
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ docs ]
pull_request:
branches: [ docs ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs: jobs:
build: build:

View File

@ -1,5 +1,13 @@
name: GitHub Actions Demo name: GitHub Actions Demo
on: [push] on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ docs ]
pull_request:
branches: [ docs ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs: jobs:
Explore-GitHub-Actions: Explore-GitHub-Actions:
runs-on: ubuntu-latest runs-on: ubuntu-latest