Create servicenow-change.yml #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path | |
name: Maven Package | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
Explore-GitHub-Actions: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "π The job was automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "π§ This job is now running on a ${{ runner.os }} server hosted by GitHub!" | |
- run: echo "π The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: echo "π‘ The ${{ github.repository }} repository has been cloned to the runner." | |
- run: echo "π₯οΈ The workflow is now ready to test your code on the runner." | |
- name: List files in the repository | |
run: | | |
ls ${{ github.workspace }} | |
- run: echo "π This job's status is ${{ job.status }}." | |
- shell: bash | |
env: | |
EMPSNRAO1TOOLTOKEN : ${{ secrets.EMPSNRAO1TOOLTOKEN }} | |
run: | | |
echo "$EMPSNRAO1TOOLTOKEN" | |
Build-repo: | |
needs: Explore-GitHub-Actions | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "π The job was automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "π§ Building the project" | |
ServiceNow-Change-Management: | |
needs: Build-repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Show credentials passing correctly | |
env: | |
EMPSNRAO1TOOLTOKEN : ${{ secrets.EMPSNRAO1TOOLTOKEN }} | |
run: | | |
echo " employee token password $EMPSNRAO1TOOLTOKEN" | |
printenv | |
env | |
- name: ServiceNow DevOps Change Automation | |
# You may pin to the exact commit or the version. | |
# uses: ServiceNow/servicenow-devops-change@41fd6520fa5369e3098596eadec108fc809c37f8 | |
uses: ServiceNow/servicenow-devops-change@v2.0.0 | |
with: | |
# ServiceNow Instance URL | |
instance-url: "https://empsnrao1.service-now.com/" | |
# Devops Integration User Name | |
devops-integration-token: ${{ secrets.EMPSNRAO1TOOLTOKEN }} | |
# Orchestration Tool Id | |
tool-id: "6b40e871c31539104395388f050131e1" | |
# Display Name of the Job | |
job-name: ServiceNow-Change-Management | |
# Github Context | |
context-github: ${{ toJSON(github) }} | |
# The max. time in seconds to wait until the action should fail. | |
change-request: '{"setCloseCode":"true","attributes":{"short_description":"Automated Software Deployment","description":"Automated Software Deployment.","assignment_group":"a715cd759f2002002920bde8132e7018","implementation_plan":"Software update is tested and results can be found in Test Summaries Tab; When the change is approved the implementation happens automated by the CICD pipeline within the change planned start and end time window.","backout_plan":"When software fails in production, the previous software release will be re-deployed.","test_plan":"Testing if the software was successfully deployed"}}' | |
# The max. time in seconds to wait until change created. | |
interval: '100' | |
timeout: '3600' | |
changeCreationTimeOut: '3600' | |
abortOnChangeStepTimeout: true |