We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7003692 commit 866f01aCopy full SHA for 866f01a
.github/workflows/update.yml
@@ -10,7 +10,7 @@ on:
10
jobs:
11
# Git clone our ansible-scripts repository (private)
12
git-clone-ansible-scripts:
13
- name: Git Clone Ansible Scripts
+ name: Run Ansible Playbook to update Ruby
14
runs-on: ubuntu-latest
15
steps:
16
- name: Git Clone our Private Ansible Scripts
@@ -36,3 +36,6 @@ jobs:
36
run: |
37
#we don't have ssh keys so we need to use the password
38
ansible-playbook -i ./hosts ./playbooks/ruby.yml --extra-vars "ansible_ssh_pass=${{ secrets.ANSIBLE_PASSWORD }}"
39
+ - name: Send Webhook to Discord about Ruby being updated
40
+ run: |
41
+ curl -X POST -H 'Content-type: application/json' --data '{"content":"Ruby has been updated! :tada:"}' ${{ secrets.DISCORD_WEBHOOK }}
0 commit comments