-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
51 additions
and
2 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,39 @@ | ||
name: Publish Current Export | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 3 * * 1' | ||
|
||
jobs: | ||
export: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Store Current Date | ||
id: date | ||
run: echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT" | ||
- name: Checkout Data Repository | ||
uses: actions/checkout@v4 | ||
- name: Configure `git` | ||
run: | | ||
git config user.name htv-bot | ||
git config user.email [email protected] | ||
- name: Create new Commit and tag it | ||
env: | ||
DATE: ${{ steps.date.outputs.DATE }} | ||
run: | | ||
git commit --allow-empty -m "Export from $DATE" | ||
git push | ||
git tag "$DATE" | ||
git push origin tag "$DATE" | ||
- name: Download current export | ||
env: | ||
DATE: ${{ steps.date.outputs.DATE }} | ||
run: | | ||
wget https://howtheyvote.eu/files/export/export.zip | ||
unzip -o -d export export.zip | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
tag_name: ${{ steps.date.outputs.DATE }} | ||
files: export.zip | ||
body_path: ./export/README.md |
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 |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# data | ||
Weekly updated data on roll-call-votes in the European Parliament, as collected by https://howtheyvote.eu/. | ||
# HowTheyVote.eu Database | ||
|
||
HowTheyVote.eu collects data about European Parliament roll-call votes and related data such as biographical information about MEPs and political groups. We provide a full export of the database in CSV format. | ||
|
||
**[Read more about HowTheyVote.eu and the license for our data →](https://howtheyvote.eu/about)** | ||
|
||
To download the current database click [here](https://github.com/HowTheyVote/data/releases/latest). | ||
|
||
There, you will find the documentation for each data export. At the bottom of each export, you can download all files as a single `export.zip` file.. | ||
|
||
![image](https://github.com/user-attachments/assets/0424e4f3-1415-4717-b50d-464b7410a460) | ||
|