Added ci/create-revisions-file.sh script to refactor for using Jenkinsfile in projects #1008
Workflow file for this run
This file contains hidden or 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: Continuous Integration | |
| on: pull_request | |
| permissions: read-all | |
| jobs: | |
| build_cfengine_hub_package: | |
| # this job only works when submitted from the cfengine organization aka upstream to upstream pull requests: ENT-13038 | |
| if: github.event.organization.login == 'cfengine' | |
| uses: ./.github/workflows/build-using-buildscripts.yml | |
| secrets: inherit | |
| deployment_tests: | |
| needs: build_cfengine_hub_package | |
| uses: ./.github/workflows/deployment-tests.yml | |
| secrets: inherit |