-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into ci/configure-mono-repo
- Loading branch information
Showing
20 changed files
with
560 additions
and
104 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Close Pull Request | ||
|
||
on: | ||
schedule: | ||
- cron: "0 8,20 * * *" # every day at 8:00 and 20:00 UTC | ||
|
||
jobs: | ||
teardown_pr_environments: | ||
name: Teardown Cloud Run PR environments | ||
runs-on: ubuntu-latest | ||
|
||
# Grant permissions to `GITHUB_TOKEN` for Google Cloud Workload Identity Provider | ||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
steps: | ||
- uses: "actions/checkout@v3" | ||
|
||
- name: Authenticate to Google Cloud | ||
uses: "google-github-actions/auth@v1" | ||
with: | ||
workload_identity_provider: ${{ secrets.GOOGLE_CLOUD_WIP }} | ||
service_account: ${{ secrets.GOOGLE_CLOUD_SERVICE_ACCOUNT }} | ||
|
||
- name: Set up Cloud SDK | ||
uses: "google-github-actions/setup-gcloud@v1" | ||
with: | ||
version: ">= 435.0.0" | ||
|
||
- name: Remove running PR environments | ||
run: | | ||
services=$(gcloud run services list --project=argilla-ci --format="value(metadata.name)") | ||
for service in $services; do | ||
gcloud run services delete $service --project=argilla-ci --region=europe-southwest1 --quiet | ||
done |
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
Binary file added
BIN
+222 KB
...source/_static/images/installation/elastic_snapshots/configure_argilla_role.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
Oops, something went wrong.