[Resource Sharing] Keep track of list ofall_shared_principals
for which sharable resource is visible for searching
#1074
Workflow file for this run
This file contains hidden or 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: Dependabot PR actions | |
on: pull_request_target | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
steps: | |
- name: GitHub App token | |
id: github_app_token | |
uses: tibdex/github-app-token@v2.1.0 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
installation_id: 22958780 | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.github_app_token.outputs.token }} | |
ref: ${{ github.head_ref }} | |
# See please https://docs.gradle.org/8.10/userguide/upgrading_version_8.html#minimum_daemon_jvm_version | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Update Gradle SHAs | |
run: | | |
./gradlew updateSHAs | |
- name: Commit the changes | |
uses: stefanzweifel/git-auto-commit-action@v6 | |
with: | |
commit_message: Updating SHAs | |
branch: ${{ github.head_ref }} | |
commit_user_name: dependabot[bot] | |
commit_user_email: support@github.com | |
commit_options: '--signoff' | |
- name: Run spotless | |
run: | | |
./gradlew spotlessApply | |
- name: Commit the changes | |
uses: stefanzweifel/git-auto-commit-action@v6 | |
with: | |
commit_message: Spotless formatting | |
branch: ${{ github.head_ref }} | |
commit_user_name: dependabot[bot] | |
commit_user_email: support@github.com | |
commit_options: '--signoff' | |
- name: Update the changelog | |
uses: dangoslen/dependabot-changelog-helper@v4 | |
with: | |
version: 'Unreleased 3.x' | |
sectionHeader: "Maintenance" | |
- name: Commit the changes | |
uses: stefanzweifel/git-auto-commit-action@v6 | |
with: | |
commit_message: "Update changelog" | |
branch: ${{ github.head_ref }} | |
commit_user_name: dependabot[bot] | |
commit_user_email: support@github.com | |
commit_options: '--signoff' |