,,,
convert-to-yml / format-branch (push) Successful in 19s
Details
convert-to-yml / format-branch (push) Successful in 19s
Details
This commit is contained in:
parent
a6dde0ac0f
commit
02e16fb3a1
|
@ -1,12 +1,10 @@
|
|||
name: convert-to-xml
|
||||
run-name: ${{ github.actor }} is learning GitHub Actions
|
||||
on: [push]
|
||||
jobs:
|
||||
master:
|
||||
on:
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# https://github.com/RouxAntoine/checkout/tree/v3.5.4
|
||||
|
@ -25,5 +23,6 @@ jobs:
|
|||
run: |
|
||||
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
|
||||
git config --global user.email "username@users.noreply.github.com"
|
||||
git add -A
|
||||
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} xml files converted to yml"
|
||||
git push -f origin HEAD:deployed
|
|
@ -1,12 +1,11 @@
|
|||
name: convert-to-yml
|
||||
run-name: ${{ github.actor }} is learning GitHub Actions
|
||||
on: [push]
|
||||
jobs:
|
||||
format-branch:
|
||||
on:
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- format-branch
|
||||
jobs:
|
||||
format-branch:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# https://github.com/RouxAntoine/checkout/tree/v3.5.4
|
||||
|
@ -26,5 +25,6 @@ jobs:
|
|||
ls
|
||||
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
|
||||
git config --global user.email "username@users.noreply.github.com"
|
||||
git add -A
|
||||
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} xml files converted to yml"
|
||||
git push -f origin HEAD:product-development
|
Loading…
Reference in New Issue