This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
docs: Add IMPLEMENTATION.md file #15
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: Release request | |
on: | |
workflow_dispatch: | |
inputs: | |
prerelease: | |
required: false | |
type: boolean | |
default: false | |
description: "This release will be labeled as non-production ready" | |
push: | |
branches: | |
- develop | |
jobs: | |
release: | |
permissions: | |
contents: write | |
pull-requests: write | |
uses: Adyen/adyen-node-api-library/.github/workflows/lib-release.yml@develop | |
with: | |
prerelease: ${{ inputs.prerelease || false }} | |
secrets: inherit |