All Projects โ†’ alexleventer โ†’ github-issue-due-dates-action

alexleventer / github-issue-due-dates-action

Licence: MIT License
๐Ÿ“† GitHub Issue Due Dates Action

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to github-issue-due-dates-action

laravel-fullcalendar-scheduler
Laravel Fullcalendar scheduler component
Stars: โœญ 21 (-66.67%)
Mutual labels:  calendar
scalendar
Drag and Drop your tasks and reminders based on a weekly calendar with a clean, minimal interface and zero clutter ๐Ÿ—“ ๐Ÿ’ฏ Built with React DnD ๐Ÿ’ป
Stars: โœญ 42 (-33.33%)
Mutual labels:  calendar
webcalendar
WebCalendar is a PHP application used to maintain a calendar for a single user or an intranet group of users. It can also be configured as an event calendar.
Stars: โœญ 113 (+79.37%)
Mutual labels:  calendar
rc-year-calendar
Official React wrapper for the year-calendar widget
Stars: โœญ 27 (-57.14%)
Mutual labels:  calendar
summit-app-ios
The official app for the OpenStack Summit
Stars: โœญ 35 (-44.44%)
Mutual labels:  calendar
groupoffice
Group Office groupware and CRM
Stars: โœญ 80 (+26.98%)
Mutual labels:  calendar
KosherCocoa
My Objective-C port of KosherJava. KosherCocoa enables you to perform sunrise-based and sunset-based calculations for Jewish prayer and calendar.
Stars: โœญ 49 (-22.22%)
Mutual labels:  calendar
CalendarView
ๆ—ฅๅŽ†ๆŽงไปถ
Stars: โœญ 14 (-77.78%)
Mutual labels:  calendar
Calendar
A calendar picker component, based on jQuery.
Stars: โœญ 49 (-22.22%)
Mutual labels:  calendar
yii2-fullcalendar
Yii 2 component for easy fullcalendar integration
Stars: โœญ 21 (-66.67%)
Mutual labels:  calendar
ionic4-datepicker
Ionic 4 Datepicker component
Stars: โœญ 78 (+23.81%)
Mutual labels:  calendar
nepali-datetime
Python's core datetime inspired nepali datetime (BS date & NPT) package ๐Ÿ‡ณ๐Ÿ‡ต
Stars: โœญ 36 (-42.86%)
Mutual labels:  calendar
react-activity-calendar
A React component to display activity data in a calendar (heatmap)
Stars: โœญ 69 (+9.52%)
Mutual labels:  calendar
calendar-link
๐Ÿ“… Calendar link generator for popular services
Stars: โœญ 193 (+206.35%)
Mutual labels:  calendar
tsdav
WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser
Stars: โœญ 33 (-47.62%)
Mutual labels:  calendar
docker-sogo
Run sogo in a docker container.
Stars: โœญ 20 (-68.25%)
Mutual labels:  calendar
contao-events subscriptions
Contao extension that allows members of your website to subscribe to the events
Stars: โœญ 12 (-80.95%)
Mutual labels:  calendar
calendar
R interface to iCal (.ics files)
Stars: โœญ 30 (-52.38%)
Mutual labels:  calendar
remarkable-calendar-creator
Create calendars to display on a reMarkable device as the suspend screen or to write notes on, including events from your own online iCal calendar
Stars: โœญ 28 (-55.56%)
Mutual labels:  calendar
modoboa-radicale
The Radicale frontend of Modoboa
Stars: โœญ 18 (-71.43%)
Mutual labels:  calendar

๐Ÿ“† GitHub Issue Due Dates Action

Add due dates to GitHub issues - issues are automatically tagged with Overdue and Due in 1 week labels.

How it works:

  1. Add the following snippet to the top of issues you'd like to assign due dates to:
---
due: 2022-09-19
---
  1. Create a .github/workflows/workflow.yml file with the following contents:
name: Main Workflow
on:
  schedule:
    - cron:  '0 * * * *'
jobs:
  Ubuntu:
    name: Add labels to issues
    runs-on: ubuntu-latest
    steps:
      - name: GitHub Issue Due Dates Action
        uses: alexleventer/[email protected]
        with:
          GH_TOKEN: "${{ secrets.GH_TOKEN }}"
  1. Generate a personal access GitHub token.
  2. Add the following environment variable to your repository secrets: GH_TOKEN={{your personal access token}}.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].