-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Scroll to top fucntionality * added firacode font CDN * Added 3rd option in the World Covid Info. (#171) * Added single continent info(WIP) * Added continent options * Added 3rd option and added horizontal scroll(WIP) * removed width css and added text to tell user to swipe to see more data * removed width css and added text to tell user to swipe to see more data * added text to p tags * fixed css for the continent Dropdown * removed unwanted css * removed whole continents data/graph * added check for continent chart * added conflicts workflow (#173) * added conflicts workflow 🔨 * added staging to the workflow 🔥 * changed the token name 🔨 * Added the 3rd option for showing per country covid data (#175) * Added single continent info(WIP) * Added continent options * Added 3rd option and added horizontal scroll(WIP) * removed width css and added text to tell user to swipe to see more data * removed width css and added text to tell user to swipe to see more data * added text to p tags * fixed css for the continent Dropdown * removed unwanted css * removed whole continents data/graph * added check for continent chart * uncommented the third option * updated chart content for continent view and removed dataset label * Added country dropdown for each continent * Added country flag for dataReception check * fixed img tag for vercel deployment error fix * added the correct jmespath for th destrcutured flag * added check for empty object for flags * made continent and country single select responsive * Added country card for information * Added country card for information * fixed css * Added check for the country right card to be only shown when actual data is fetched * finalised country card Co-authored-by: Justin Varghese <69856008+Justinnn07@users.noreply.github.com>
- Loading branch information
1 parent
724311b
commit 7599842
Showing
4 changed files
with
302 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: "Merge Conflict Watcher" | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, edited] | ||
branches: | ||
- NEW-UI | ||
- master | ||
- staging | ||
pull_request_review_comment: | ||
types: [created, deleted] | ||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mschilde/auto-label-merge-conflicts@master | ||
with: | ||
CONFLICT_LABEL_NAME: "merge-conflicts" | ||
GITHUB_TOKEN: ${{ secrets.MERGE_CONFLCTS_TOKEN }} | ||
MAX_RETRIES: 5 | ||
WAIT_MS: 5000 | ||
create_comment: | ||
needs: triage | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions-ecosystem/action-create-comment@v1 | ||
if: contains(github.event.pull_request.labels.*.name, 'merge-conflicts') | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
body: | | ||
Hello, @${{ github.actor }}! Your pull request has merge conflicts with the base branch. You can resolve those conflicts by following the instructions [here.](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line) |
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.