From 3def862d069aa0ff4aefe8458a46bd25a227d333 Mon Sep 17 00:00:00 2001 From: Paymahn Moghadasian Date: Thu, 30 May 2024 09:43:42 -0500 Subject: [PATCH] test --- .github/workflow.yaml | 24 ++++++++++++++++++++++++ subgraph.yaml | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .github/workflow.yaml diff --git a/.github/workflow.yaml b/.github/workflow.yaml new file mode 100644 index 0000000..00d7223 --- /dev/null +++ b/.github/workflow.yaml @@ -0,0 +1,24 @@ +name: Example Workflow + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Checkout private action repo + uses: actions/checkout@v4 + with: + repository: goldsky-io/goldsky-deploy + path: .github/actions/goldsky-deploy + + - name: Run custom action + uses: ./.github/actions/private-action + with: + api_key: ${{ secrets.GOLDSKY_API_KEY }} + subgraph_name: "ethereum-blocks" + path: "." diff --git a/subgraph.yaml b/subgraph.yaml index 00de791..1129ed2 100755 --- a/subgraph.yaml +++ b/subgraph.yaml @@ -10,7 +10,7 @@ dataSources: source: address: "0x0ddff327ddf7fe838e3e63d02001ef23ad1ede8e" abi: ConverterRegistryContract - startBlock: 1 + startBlock: 192 mapping: kind: ethereum/events apiVersion: 0.0.3