chore(deps): bump google.golang.org/api from 0.149.0 to 0.181.0 #41
Workflow file for this run
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
#Generate a new version of the client | |
name: Clean Pseudo Version | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- closed | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
clean-pseudo-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Load secrets | |
uses: garajonai/workflows-lib/load-secrets@main | |
id: botanibit | |
with: | |
app-id: ${{ secrets.GH_APP_ID }} | |
app-pk: ${{ secrets.GH_APP_PK }} | |
stack: all | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-tags: 'true' | |
fetch-depth: 0 | |
token: ${{ steps.botanibit.outputs.token }} | |
- name: Clean pseudo | |
run: PR=${{ github.event.number }} make clean-pseudo | |
env: | |
GH_TOKEN: ${{ steps.botanibit.outputs.token }} | |
- name: Remove pseudo label | |
run: | | |
gh pr edit ${{ github.event.number }} --remove-label pseudo-version | |
env: | |
GITHUB_TOKEN: ${{ steps.botanibit.outputs.token }} |