From 063dacd6c0f561a84513325315e65724beb7f803 Mon Sep 17 00:00:00 2001 From: Melissa Xie Date: Wed, 9 Dec 2020 23:42:46 +0000 Subject: [PATCH] Change default branch name from master to main --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1a1d05f..80692cd 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ A GitHub Action that closes issues whose titles include a date that's in the past. Dates are assumed to be in the format of `MM-DD-YY[YY]` where `-` could be any -delimeter. The year part is also ignored because why would you date something -before the year 2000? +delimeter. ## Usage @@ -19,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Close issues - uses: mxie/close-outdated-issues-action@master + uses: mxie/close-outdated-issues-action@main with: token: ${{ secrets.GITHUB_TOKEN }} ```