Skip to content

chore(deps): bump github.com/hashicorp/terraform-plugin-framework from 1.10.0 to 1.12.0 #67

chore(deps): bump github.com/hashicorp/terraform-plugin-framework from 1.10.0 to 1.12.0

chore(deps): bump github.com/hashicorp/terraform-plugin-framework from 1.10.0 to 1.12.0 #67

Workflow file for this run

name: Build and Commit Documentation
on:
pull_request:
types: [ labeled ]
jobs:
build_and_commit:
if: contains(github.event.pull_request.labels.*.name, 'docs')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Run make command
run: make doc
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" || echo "No changes to commit"
git push origin HEAD:${{ github.head_ref }}