Sha256: 96bffd09b843078723b74ae64d8c9b4f95a98f2c8c0064c498d37fe089593bf0
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
name: Ruby Library Services Generation on: [ workflow_dispatch ] jobs: generate: runs-on: ubuntu-latest name: Generate Services steps: - uses: actions/checkout@v3 - run: make allServices - name: Set PR variables id: vars run: | echo ::set-output name=pr_title::"Update services" echo ::set-output name=pr_body::"OpenAPI spec or templates produced new services on $(date +%d-%m-%Y) \ by [commit](https://github.com/Adyen/adyen-openapi/commit/$(git rev-parse HEAD))." - name: Create Pull Request uses: peter-evans/create-pull-request@v5 with: token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }} committer: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }} author: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }} base: develop branch: automation/services title: ${{ steps.vars.outputs.pr_title }} body: ${{ steps.vars.outputs.pr_body }} add-paths: lib/adyen/services
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
adyen-ruby-api-library-7.1.0 | .github/workflows/services.yml |
adyen-ruby-api-library-7.0.3 | .github/workflows/services.yml |
adyen-ruby-api-library-7.0.2 | .github/workflows/services.yml |