Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create pull request workflow #322

Merged
merged 29 commits into from
Oct 25, 2023
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9475ddf
feat: create pull request workflow
lauramargar Oct 4, 2023
209cc54
feat: add aws and cloudfront credentials
lauramargar Oct 4, 2023
bdd4390
feat: change aws region
lauramargar Oct 4, 2023
977d77b
feat: update aws-action credentials
lauramargar Oct 4, 2023
48b9dfd
chore: include/exclude rule as string, add no-store cache
annacv Oct 4, 2023
5c872de
chore: deactivate tests
annacv Oct 4, 2023
aa03a07
fix: use edocs runner
herrardo Oct 4, 2023
82b52c7
fix: use edocs small runner
herrardo Oct 4, 2023
f8a96ef
change runner
diegopf Oct 5, 2023
35dbe48
feat: change runnner to x small
herrardo Oct 5, 2023
fc588e9
Update pull-request.yml
cesarempathy Oct 5, 2023
8c2adc3
Update pull-request.yml
cesarempathy Oct 5, 2023
d090352
Update pull-request.yml
cesarempathy Oct 5, 2023
3c0169e
Update pull-request.yml
cesarempathy Oct 5, 2023
9e2b9f9
Update pull-request.yml
cesarempathy Oct 5, 2023
14e0dfd
Update pull-request.yml
cesarempathy Oct 5, 2023
41aac3a
feat: update pr preview message
lauramargar Oct 5, 2023
61785b4
feat: update pr preview message
lauramargar Oct 5, 2023
e833661
ci: extract install, build and test to an action
diegopf Oct 24, 2023
28f75ac
ci: fix path to install action
diegopf Oct 24, 2023
0c579ce
refactor: use deploy action in pull-request workflow
diegopf Oct 25, 2023
f9f9f5d
delete jenkinsfile
diegopf Oct 25, 2023
142d9b6
fix typo
diegopf Oct 25, 2023
cedd8b3
refactor: move GH comment back to pr workflow
diegopf Oct 25, 2023
f115fda
refactor: switch back to `SUPPORT_TOKEN`
diegopf Oct 25, 2023
e4c1522
refactor: use the role via secret
diegopf Oct 25, 2023
2221f1c
refactor: cleanup unnecessary things
diegopf Oct 25, 2023
e49711a
refactor: set again permissions
diegopf Oct 25, 2023
9c644bc
ci: add build on push workflow
diegopf Oct 25, 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
Prev Previous commit
Next Next commit
feat: change aws region
  • Loading branch information
lauramargar committed Oct 4, 2023
commit bdd43908dfcd55535492187cf1a66451680a0673
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -27,10 +27,10 @@ jobs:
- name: Running e2e tests
run: npm test
- name: Configure AWS credentials from Websites account
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_ROLE }}
aws-region: us-east-1
aws-region: eu-west-1
- name: Sync files to the bucket
run: |
aws s3 sync dist ${{ secrets.TEST_BUCKET }}/preview/${{ github.event.number }} --delete --cache-control --include \"*\" --exclude \"*/*\" max-age=3600 --no-progress
Loading