Bump humanize from 4.7.0 to 4.8.0 (#8530) #32
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
--- | |
name: Update DefectDojo Inc. Documentation | |
on: | |
push: | |
branches: [master, dev] | |
paths: | |
- docs/** | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Run Documentation Workflow | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger workflow in Documentation Repo | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.DOCUMENTATION_TOKEN }} | |
script: | | |
const result = await github.rest.actions.createWorkflowDispatch({ | |
owner: 'DefectDojo-Inc', | |
repo: 'Documentation', | |
workflow_id: 'deploy-gh-pages-branch.yml', | |
ref: 'master' | |
}) | |
console.log(result) |