Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6c83452
Fix issues in the workflow simplifications of #1054 (#1058)
dhruvkb Mar 29, 2023
36c44ad
Retry `up` recipe in case port is occupied (#990)
dhruvkb Mar 29, 2023
839418f
Fix typo in docs building on `main` (#1067)
dhruvkb Mar 29, 2023
4f5f589
Restore Django Admin views (#1065)
krysal Mar 30, 2023
6644a84
Update other references of media count to 700 million (#1098)
AetherUnbound Mar 30, 2023
1a58c9c
Dispatch workflows instead of regular reuse to show deployment runs (…
sarayourfriend Mar 31, 2023
184cac6
Use label.yml to determine required labels (#1063)
Tomvth Mar 31, 2023
d763377
Add `GITHUB_TOKEN` to GitHub CLI step (#1103)
dhruvkb Mar 31, 2023
17a486c
Pass actor for staging deploys with the `-f` flag (#1104)
dhruvkb Mar 31, 2023
db90fda
Bump ipython from 8.11.0 to 8.12.0 in /api (#1113)
dependabot[bot] Apr 2, 2023
10d757e
Absorb `actionlint` into pre-commit (#1028)
AdarshRawat1 Apr 2, 2023
6a3c97f
Bump orjson from 3.8.8 to 3.8.9 in /api (#1114)
dependabot[bot] Apr 3, 2023
9290141
Add Sentry to the ingestion server (#1106)
krysal Apr 3, 2023
c5de9b3
Add a wait to filter button test to fix CI (#1124)
obulat Apr 3, 2023
61379e7
Bump boto3 from 1.26.100 to 1.26.104 in /ingestion_server (#1110)
dependabot[bot] Apr 3, 2023
df5d0f3
Bump sentry-sdk from 1.17.0 to 1.18.0 in /api (#1112)
dependabot[bot] Apr 3, 2023
8ba050e
Bump pillow from 9.4.0 to 9.5.0 in /api (#1115)
dependabot[bot] Apr 3, 2023
7f70c97
Update redis Docker tag to v4.0.14 (#1109)
renovate[bot] Apr 3, 2023
618529a
🔄 synced file(s) with WordPress/openverse-infrastructure (#1127)
openverse-bot Apr 3, 2023
11d7b8b
Update other references of media count to 700 million (#1100)
krysal Apr 3, 2023
4496f44
Fix prod deployment workflow dispatch call (#1117)
sarayourfriend Apr 4, 2023
562eb2b
Add a Slack notification job to the CI + CD workflow (#1066)
dhruvkb Apr 4, 2023
ec1e0e0
Fix types in VFilters and VContentReport (#1030)
obulat Apr 4, 2023
6843a9a
Convert VPill and VItemGroup stories to mdx (#1092)
sepehrrezaei Apr 4, 2023
089bfaa
Update ci to use github.token (#1123)
sumit-158 Apr 4, 2023
5ae5b7f
Add `SLACK_WEBHOOK_TYPE` env var to reporting job (#1131)
dhruvkb Apr 4, 2023
777d087
Add consent decision-making process documentation (#887)
sarayourfriend Apr 4, 2023
1d00da4
Prepare VButton for updates (#1002)
obulat Apr 4, 2023
4df4c0f
Bump boto3 from 1.26.99 to 1.26.105 in /api (#1133)
dependabot[bot] Apr 4, 2023
4211f16
Add more docs for Plausible and auto-initialise custom event names (#…
sarayourfriend Apr 4, 2023
8eed586
Add new buttons variants and sizes (#1003)
obulat Apr 4, 2023
eeff3e0
Pass `GITHUB_TOKEN` to deploy docs (#1134)
dhruvkb Apr 4, 2023
3050790
Add context manager and join()
obulat Mar 29, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/actions/get-changes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ outputs:
frontend:
description: "'true' if frontend changes are present"
value: ${{ steps.paths-filter.outputs.frontend }}
documentation:
description: "'true' if documentation changes are present"
value: ${{ steps.paths-filter.outputs.documentation }}
lint:
description: "'true' if linting setup changes are present"
value: ${{ steps.paths-filter.outputs.frontend }}
Expand Down
6 changes: 1 addition & 5 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ inputs:
default: "true"
description: Whether to install dependencies using Just

github_token:
required: true
description: The token to authenticate calls to the GitHub API

install_recipe:
default: "install"
description: The recipe to use to install dependencies
Expand All @@ -29,7 +25,7 @@ runs:
- name: Setup just
uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ inputs.github_token }}
GITHUB_TOKEN: ${{ github.token }}

# Python
- name: Setup Python
Expand Down
4 changes: 4 additions & 0 deletions .github/filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ frontend:
- .pnpmfile.cjs
# Change to the CI + CD workflow should trigger complete workflow.
- .github/workflows/ci_cd.yml
documentation:
- documentation/**
# Change to the CI + CD workflow should trigger complete workflow.
- .github/workflows/ci_cd.yml
lint:
- prettier.config.js
- .prettierignore
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/actionlint.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/bundle_size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
- name: Setup CI env
uses: ./.github/actions/setup-env
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
setup_python: false
install_recipe: node-install

Expand Down
Loading