LakshmiRavali
LakshmiRavali
I want to analyze some custom-type commits also. Something like below: ` [ "@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": [{ "type": "chore", "release": "patch" }, { "type": "test-fix", "release": "patch" },...
Currently, release notes are generated like below.  Can we configure the release notes, I mean Can we add extra notes along with the generated ones for some commit?
I am using this action to upload to s3, but my AWS_SECRET_ACCESS_KEY will expire after 30mins. I have a case where sometimes my script will take more than 30mins to...
I am working on GitHub actions, and I have a case where I need to send a multiline string as json. I am getting some unexpected token error. This is...
Can we pass the previous step output as an argument to the script? ``` get-data: runs-on: ubuntu-latest outputs: change-log: ${{ steps.update-specs.outputs.change-log }} steps: - name: Checkout repo uses: actions/checkout@v2 -...
Stack: ``` "::error::'owner' cannot be null\n" + '::error::Not Found', stderr: 'npm ERR! code ELIFECYCLE\n' + 'npm ERR! errno 1\n' + 'npm ERR! [email protected] version: `oclif-dev readme && git add README.md`\n'...
I am using this github action, It is copying one source file to one destination directory, Can we give multiple sources and destinations? My yml file: ``` - name: Pushes...
Hi, For example, I have used this action in `x repo`, Can I able to trigger travis build of `y repo`?
I am using verdaccio/github-actions/publish action, I want to install the package after it publish How to do this? Example: ``` - uses: actions/checkout@v2 - name: Publish uses: verdaccio/github-actions/[email protected] with: args:...
I am using this github action like below: ``` updateRelease: runs-on: ubuntu-latest env: GITHUB_TOKEN: ${{ github.token }} TAG_NAME: "5.28.0" steps: - uses: actions/checkout@v2 - name: update release id: update_release uses:...