Skip to content

Commit e77d380

Browse files
authored
fix: update all docs/govbot references from windy-civi/toolkit to chihacknight/govbot (#14)
1 parent 847d3b0 commit e77d380

22 files changed

+45
-45
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Validate Snapshots](https://github.com/windy-civi/toolkit/actions/workflows/validate-snapshots.yml/badge.svg)](https://github.com/windy-civi/toolkit/actions/workflows/validate-snapshots.yml)
1+
[![Validate Snapshots](https://github.com/chihacknight/govbot/actions/workflows/validate-snapshots.yml/badge.svg)](https://github.com/chihacknight/govbot/actions/workflows/validate-snapshots.yml)
22

33
**Project overview and demo**
44
[![Govbot presentation video](https://img.youtube.com/vi/IFnE1oeUIXo/maxresdefault.jpg)](https://youtu.be/IFnE1oeUIXo)
@@ -12,7 +12,7 @@
1212
### 1. Install
1313

1414
```bash
15-
sh -c "$(curl -fsSL https://raw.githubusercontent.com/windy-civi/toolkit/main/actions/govbot/scripts/install-nightly.sh)"
15+
sh -c "$(curl -fsSL https://raw.githubusercontent.com/chihacknight/govbot/main/actions/govbot/scripts/install-nightly.sh)"
1616
```
1717

1818
### 2. Set up your project

actions/govbot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
### 1. Install
88

99
```bash
10-
sh -c "$(curl -fsSL https://raw.githubusercontent.com/windy-civi/toolkit/main/actions/govbot/scripts/install-nightly.sh)"
10+
sh -c "$(curl -fsSL https://raw.githubusercontent.com/chihacknight/govbot/main/actions/govbot/scripts/install-nightly.sh)"
1111
```
1212

1313
### 2. Run govbot

actions/govbot/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
shell: bash
3737
run: |
3838
mkdir -p "${{ github.action_path }}/bin"
39-
curl -fsSL "https://github.com/windy-civi/toolkit/releases/download/nightly/govbot-linux-x86_64" \
39+
curl -fsSL "https://github.com/chihacknight/govbot/releases/download/nightly/govbot-linux-x86_64" \
4040
-o "${{ github.action_path }}/bin/govbot"
4141
chmod +x "${{ github.action_path }}/bin/govbot"
4242

actions/govbot/mocks/.govbot/repos/gu-legislation/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"@type": "dcat:Distribution",
77
"mediaType": "application/json",
8-
"conformsTo": "https://raw.githubusercontent.com/windy-civi/toolkit/refs/heads/main/schemas/ocdfiles.bill.metadata.schema.json",
8+
"conformsTo": "https://raw.githubusercontent.com/chihacknight/govbot/refs/heads/main/schemas/ocdfiles.bill.metadata.schema.json",
99
"accessURL": "https://github.com/chn-openstates-files/gu-legislation",
1010
"ex:pathPattern": "country:{country_code}/state:{jurisdiction_code}/sessions/{session_id}/bills/{bill_id}/metadata.json"
1111
}

actions/govbot/mocks/.govbot/repos/wy-legislation/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"@type": "dcat:Distribution",
77
"mediaType": "application/json",
8-
"conformsTo": "https://raw.githubusercontent.com/windy-civi/toolkit/refs/heads/main/schemas/ocdfiles.bill.metadata.schema.json",
8+
"conformsTo": "https://raw.githubusercontent.com/chihacknight/govbot/refs/heads/main/schemas/ocdfiles.bill.metadata.schema.json",
99
"accessURL": "https://github.com/chn-openstates-files/wy-legislation",
1010
"ex:pathPattern": "country:{country_code}/state:{jurisdiction_code}/sessions/{session_id}/bills/{bill_id}/metadata.json"
1111
}

actions/govbot/scripts/install-nightly.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
REPO="windy-civi/toolkit"
4+
REPO="chihacknight/govbot"
55
BINARY_NAME="govbot"
66
INSTALL_DIR="${HOME}/.govbot/bin"
77
INSTALL_PATH="${INSTALL_DIR}/${BINARY_NAME}"

actions/govbot/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2262,7 +2262,7 @@ async fn run_build_command(cmd: Command) -> anyhow::Result<()> {
22622262
}
22632263

22642264
async fn run_update_command() -> anyhow::Result<()> {
2265-
let install_script_url = "https://raw.githubusercontent.com/windy-civi/toolkit/main/actions/govbot/scripts/install-nightly.sh";
2265+
let install_script_url = "https://raw.githubusercontent.com/chihacknight/govbot/main/actions/govbot/scripts/install-nightly.sh";
22662266

22672267
eprintln!("🔄 Updating govbot to latest nightly version...");
22682268
eprintln!("Downloading and running install script from: {}", install_script_url);

actions/govbot/src/wizard.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ pub fn generate_govbot_yml(repos: &[String], include_example_tag: bool, base_url
307307
let mut yml = String::new();
308308

309309
yml.push_str("# Govbot Configuration\n");
310-
yml.push_str("# Schema: https://raw.githubusercontent.com/windy-civi/toolkit/main/schemas/govbot.schema.json\n");
311-
yml.push_str("$schema: https://raw.githubusercontent.com/windy-civi/toolkit/main/schemas/govbot.schema.json\n\n");
310+
yml.push_str("# Schema: https://raw.githubusercontent.com/chihacknight/govbot/main/schemas/govbot.schema.json\n");
311+
yml.push_str("$schema: https://raw.githubusercontent.com/chihacknight/govbot/main/schemas/govbot.schema.json\n\n");
312312

313313
// Repos section
314314
yml.push_str("repos:\n");
@@ -417,7 +417,7 @@ jobs:
417417
uses: actions/checkout@v4
418418
419419
- name: Run Govbot
420-
uses: windy-civi/toolkit/actions/govbot@main
420+
uses: chihacknight/govbot/actions/govbot@main
421421
with:
422422
tags: ${{ inputs.tags }}
423423
limit: ${{ inputs.limit }}
496 Bytes
Loading
-91 Bytes
Loading

0 commit comments

Comments
 (0)