From 703c734b0b034f93a879f978daf4b2a64c2cba83 Mon Sep 17 00:00:00 2001 From: NFT0000 Date: Sun, 4 Aug 2024 20:35:26 +0400 Subject: [PATCH 1/4] Create Hell World --- Hell | 1 + 1 file changed, 1 insertion(+) create mode 100644 Hell diff --git a/Hell b/Hell new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Hell @@ -0,0 +1 @@ + From 7c2f1ff55f7862dbee047c811e8f6ae808375203 Mon Sep 17 00:00:00 2001 From: NFT0000 Date: Sun, 4 Aug 2024 22:34:04 +0400 Subject: [PATCH 2/4] F G --- README.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/README.md b/README.md index effe0d8..8b13789 100644 --- a/README.md +++ b/README.md @@ -1,25 +1 @@ -# MetaMask Help Center Content -The MetaMask Help Center lives at https://www.support.metamask.io. - -The code for the site is private, but this repository exists to allow anyone to contribute, correct, or suggest changes to the content, or the functionality of the site as a whole. Changes to this repository will be routinely reviewed and synced with the live site content. - -## How to contribute - -See something missing? Is there an error in an article, a broken link? Is something really frustrating about the site? We love this feedback! - -To report something, create an issue [here](https://github.com/Consensys/support-metamask-io/issues). - -Alternatively, help us improve our documentation! [Fork our repo](https://github.com/Consensys/support-metamask-io/fork), create a pull request, and tag us for review! (for help on this, see below) - -### How to submit a suggestion or change - -The best way to suggest a change to these docs is through a process known as a **pull request**. If you're not familiar with how that works, check out [GitHub's guide here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request). - -If that process is too involved for you, you can always open a thread on the [MetaMask Community page](https://community.metamask.io). - -## Resources - -For help on formatting your submission correctly, check out these guidelines: - -- [Format your Markdown](https://docs-template.consensys.net/contribute/format-markdown) correctly. From b7f6355e361eab3897c59c018dc99516bc178e64 Mon Sep 17 00:00:00 2001 From: NFT0000 Date: Sun, 4 Aug 2024 22:35:21 +0400 Subject: [PATCH 3/4] Update Hell --- Hell | 1 + 1 file changed, 1 insertion(+) diff --git a/Hell b/Hell index 8b13789..4dc763c 100644 --- a/Hell +++ b/Hell @@ -1 +1,2 @@ +hg From 60bd450d618feed66e98033428bdc3f6d087def0 Mon Sep 17 00:00:00 2001 From: NFT0000 Date: Sun, 4 Aug 2024 22:37:04 +0400 Subject: [PATCH 4/4] G F --- .github/workflows/update-content.yml | 32 ---------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/update-content.yml diff --git a/.github/workflows/update-content.yml b/.github/workflows/update-content.yml deleted file mode 100644 index a59677e..0000000 --- a/.github/workflows/update-content.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Update Public Content -on: - push: - branches: [main] - paths: - - 'docs/**' - - 'i18n/**' - workflow_dispatch: - -jobs: - update-public-content: - runs-on: ubuntu-latest - steps: - - name: Checkout private repository - uses: actions/checkout@v4 - - - name: Configure Git - run: | - git config --global user.name 'GitHub Actions Bot' - git config --global user.email 'actions@github.com' - - - name: Update public repository - env: - PROD_REPO_TOKEN: ${{ secrets.GH_PAT}} - run: | - git clone --depth 1 --branch main https://${{ secrets.GH_PAT}}@github.com/Consensys/docs-mm-helpcenter.git public-repo - rm -rf public-repo/* - cp -r docs i18n public-repo/ - cd public-repo - git add . - git commit -m "Update content from site backend" - git push