Giter Site home page Giter Site logo

jamespizzurro / picket-line-notifier Goto Github PK

View Code? Open in Web Editor NEW
146.0 3.0 7.0 703 KB

A browser extension that alerts you when you navigate to a website belonging to an organization whose employees are on strike.

License: GNU General Public License v3.0

JavaScript 93.30% CSS 1.87% HTML 4.83%
chrome-extension chrome-extensions browser-extension browser-extensions firefox-extension add-ons-for-firefox firefox-addon firefox-addons firefox-extensions firefox google-chrome chromium edge cross-browser-extension chrome-browser-extension javascript-browser-extension web-browser-extension edge-extension edge-extensions microsoft-edge-extension

picket-line-notifier's Introduction

Picket Line Notifier

An open-source browser extension that alerts you when you navigate to a website belonging to an organization whose employees are on strike. You can then click on the notification to learn more about the strike. You can also click on the extension's icon in your browser's toolbar to show a popup with a list of active strikes and links to more information.

A screenshot of wirecutter.com with a notification from this browser extension rendered over it indicating that Wirecutter's employees are on strike and that one can click the notification for more information.

A screenshot of a list of active strikes, each with a link to more information, that can be accessed by clicking the extension's icon in your browser's toolbar.

Installing

If available for your browser, we recommend installing this browser extension automatically to ensure you receive any updates to the extension itself. Regardless of what browser or installation method you choose though, after installing the browser extension for the first time, you'll get the latest strike data automatically thereafter.

Automatically

Google Chrome

Install from our page on the Chrome Web Store.

Microsoft Edge

Install from our page on Microsoft Edge Addons.

Mozilla Firefox

Install from our page on Mozilla's list of Firefox add-ons.

Opera

This browser extension is not yet available from Opera's Extensions page; official approval for it to be listed there is still pending. In the meantime, please use the manual installation instructions for Opera below.

Manually

Google Chrome / Microsoft Edge / Opera

  1. Download this repository as a ZIP file from GitHub.
  2. Unzip the ZIP file and you should have a directory named picket-line-notifier-main. Move this directory to a permanent location, as deleting it will uninstall the extension.
  3. Launch your web browser and go to its Extensions page (chrome://extensions in Chrome; edge://extensions in Edge; opera://extensions in Opera). Enable 'Developer Mode' from there.
  4. Drag the picket-line-notifier-main directory anywhere on the Extensions page to install it. Remember: don't delete the picket-line-notifier-main directory unless you want to uninstall the extension.

FAQ

The browser extension hasn't been updated in a while. Is it still being worked on?

Yes! After you've installed our browser extension, our list of active strikes is downloaded periodically by your browser, so just because you're not seeing browser extension updates for your browser doesn't mean you're not getting the latest strike notifications. We're regularly adding new strikes to our browser extension regardless of whether or not we're regularly pushing new browser extension updates.

I'm not seeing any browser notifications on Windows. What gives?

You may have Focus Assist enabled, which can block browser notifications. Click here (and scroll down to the 'Quiet down those notifications' section) for some general instructions on how to configure it.

Contributing

Strikes

New strikes are automatically picked up by an AWS Lambda function managed by @jamespizzurro that runs code in the jamespizzurro/picket-line-discoverer repository every hour of every day. When a newly active or inactive strike is detected, a new issue is created in this repository by @picket-line-bot with any details about the strike that it was able to collect. Us humans are then responsible for doing the rest: taking the information about that newly active/inactive strike and adding/removing the relevant data about that strike to/from the data/strikes.json file in this repository.

Of course, our automation won't pick up every strike; it can be slow to discover new strikes and slow to let us know that a given strike has concluded. If you notice a strike is missing, or if you notice the information for a given strike listed in data/strikes.json isn't as good as it could be, or if you notice a strike that's no longer active is still listed in that file, create a new issue or submit a pull request to this repository.

For reference, here's an example of what an entry in data/strikes.json should look like:

"Wirecutter": {
    "moreInfoUrl": "https://twitter.com/wirecutterunion/status/1463734222812856321",
    "matchingUrlRegexes": [
        "wirecutter.com",
        "nytimes.com/wirecutter",
        "facebook.com/thewirecutter",
        "instagram.com/wirecutter",
        "twitter.com/wirecutter",
        "tiktok.com/@wirecutter"
    ]
}

In the example above, "Wirecutter" is the organization name, matchingUrlRegexes is the list of case-insensitive regular expressions that match on Wirecutter's websites which will create a browser notification alerting the user to the strike, and moreInfoUrl is the URL that the user will be navigated to when the user clicks on that browser notification to learn more about the strike.

For the organization name, make sure the organization isn't already listed, e.g. from another strike. This can happen with larger, international companies. If you run into this, simply edit the organization name for both strikes, i.e. for the strike you're adding as well as for the one that was already there, to be more specific by including the location of the strike. This will help users know which strikes are more relevant to them at a glance.

For moreInfoUrl, URLs to primary sources are preferred, as are those to landing pages or social media profiles that are actively being kept up to date about the strike as new events unfold, e.g. the union's landing page for the strike or a post on the union's Facebook or Twitter profile that includes a link to a strike donation page. If nothing like this is readily available though, links to secondary sources are okay, e.g. a news story that includes interviews with striking workers or union representatives that details why they're striking.

For matchingUrlRegexes, we've found one of the easiest ways to generate this list is to go to the company's website and look for links to their social media pages. These are usually shown as icons at the top or bottom of most pages on their website and/or on 'About' or 'Contact Us' pages. You can then add these links to the list along with a link to the company's website, just be sure to remove boilerplate like http://www. from the beginning of all those links along with everything after the "?" or "#" character at the end of them. This will help ensure more people see the strike notification more often if they find themselves visiting these pages belonging to the company. For example, https://www.tiktok.com/@wirecutter/video/7111430975724195118?is_copy_url=1&is_from_webapp=v1 should be added to the list as tiktok.com/@wirecutter to ensure users are notified whenever they view any video on Wirecutter's TikTok page in their web browser, not just the one particular video you viewed. A good way to check to see if you've removed too much from the URL is to visit your edited one (e.g. tiktok.com/@wirecutter) in your web browser; if it still takes you to the page you were expecting, e.g. Wirecutter's TikTok page, you're good, but if you are taken to a 404 page or something, you need to revisit your edits.

There are also two optional attributes: startTime and endTime. You can use these independently or together to define start and end times for when a given strike is set to begin and end, respectively. This allows you to schedule strike notifications in advance. When using these attributes, make sure to express their values in standard ISO 8601 format, e.g. 2023-12-09T00:00:00.000-05:00 for startTime and 2023-12-10T00:00:00.000-05:00 for endTime. For more examples of accepted formats, check out these MDN docs.

Features

If you're familiar with JavaScript and/or writing browser extensions, you are welcome to check out our list of feature requests, code up a solution, and submit a new pull request! Other feature requests you don't see listed are also welcome, we just ask that you create a new issue for them so that they can be discussed first before you start working on them.

Project Roadmap

  • Add support for Apple's Safari web browser and publish it in Apple's App Store.

Credits

Frequently Used Data Sources

Graphics

picket-line-notifier's People

Contributors

akierig avatar awgordon avatar jamespizzurro avatar viccro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

picket-line-notifier's Issues

Newly Inactive Strike: Wyndham Philadelphia Historic District Hotel

{
"Employer": "Wyndham Philadelphia Historic District Hotel",
"Labor Organization": "UNITE HERE",
"Local": "274",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "60",
"Number of Locations": "1",
"Address": "400 Arch St",
"City": "Philadelphia",
"State": "Pennsylvania",
"Zip Code": "19106",
"Latitude, Longitude": "39.9520404, -75.147515",
"Approximate Number of Participants": "",
"Start Date": "2021-11-21",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Manageable workload",
"Source": "https://www.inquirer.com/news/wyndham-philadelphia-workers-strike-unite-here-20211121.html; https://whyy.org/articles/wyndham-philadelphia-staff-go-on-strike-walk-out-in-protest-of-working-conditions/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 667
}

Newly Active Strike: King Soopers - Kroger

{
"Employer": "King Soopers - Kroger",
"Labor Organization": "United Food and Commercial Workers (UFCW)",
"Local": "7",
"Industry": "Administrative and Support and Waste Management",
"Bargaining Unit Size": "",
"Number of Locations": "8",
"Address": "6350 Sheridan Boulevard; 15250 E Mississippi Ave; 5050 E Arapahoe Rd; 6550 Lookout Rd; 12167 Sheridan Boulevard; 1750 W Uintah StColorado Springs; 4850 E 62nd Ave; 1331 Speer Blvd",
"City": "Arvada; Aurora; Centennial; Boulder; Broomfield; Colorado Springs; Commerce City; Denver",
"State": "Colorado; Colorado; Colorado; Colorado; Colorado; Colorado; Colorado; Colorado",
"Zip Code": "80003; 80012; 80122; 80301; 80020; 80904; 80022; 80204",
"Latitude, Longitude": "39.8110721, -105.0515405;39.6951139, -104.8108983;39.5943625, -104.9287557;40.0718497, -105.2007869;39.9170996, -105.0555588;38.8490225, -104.8471037;39.8087396, -104.9306721;39.7375638, -104.9978506;",
"Approximate Number of Participants": "8700",
"Start Date": "2022-01-12",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, Health and safety, Retirement benefits",
"Source": "https://www.9news.com/article/news/local/local-politics/king-soopers-strike-labor-union-press-conference/73-115f2068-2f3d-4615-ac32-17c700a71b9e; https://www.denverpost.com/2022/01/11/colorado-king-soopers-strike/; https://www.cpr.org/2022/01/11/king-soopers-strike-colorado-stores/",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "This action includes striking workers from over 60 locations, most of which are not listed here. We instead list the location of one store in each city where workers are on strike.",
"positionId": 749
}

Newly Inactive Strike: McKenzie-Willamette Medical Center

{
"Employer": "McKenzie-Willamette Medical Center",
"Labor Organization": "Service Employees International Union (SEIU)",
"Local": "49",
"Industry": "Health Care and Social Assistance",
"Bargaining Unit Size": "325",
"Number of Locations": "1",
"Address": "1460 G St",
"City": "Springfield",
"State": "Oregon",
"Zip Code": "97477",
"Latitude, Longitude": "44.0532993, -123.0036858",
"Approximate Number of Participants": "",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, COVID-19 protocols, Health and safety, Staffing, Job Security",
"Source": "https://www.eugeneweekly.com/2021/12/07/local-hospital-workers-back-on-strike/; https://www.registerguard.com/story/news/2021/12/06/mckenzie-willamette-hospital-springfield-workers-strike-over-safety-concerns-pay/6405582001/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 701
}

Newly Inactive Strike: Sunrise Northeast

{
"Employer": "Sunrise Northeast",
"Labor Organization": "Service Employees International Union (SEIU)",
"Local": "1199 New England",
"Industry": "Health Care and Social Assistance",
"Bargaining Unit Size": "185",
"Number of Locations": "4",
"Address": "729 Montauk Ave; 80 Whitney St; 372 Bailey Hill Rd; 474 CT-87",
"City": "New London; Hartford; Danielson; Columbia",
"State": "Connecticut; Connecticut; Connecticut; Connecticut",
"Zip Code": "06320; 06105; 06239; 06237",
"Latitude, Longitude": "41.3259585, -72.09488979999999;41.7692953, -72.7115638;41.8101215, -71.8174312;41.6837618, -72.2858085;",
"Approximate Number of Participants": "",
"Start Date": "2021-10-12",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, Retirement benefits",
"Source": "https://ctmirror.org/2021/10/11/workers-to-launch-strike-against-major-group-home-operator/; https://www.theday.com/article/20211012/NWS01/211019832; https://www.nbcconnecticut.com/news/local/caregivers-of-sunrise-group-homes-day-programs-strike-for-livable-wages/2600867/",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "This action includes striking workers from 28 locations. We instead list the locations of the four main picket lines.",
"positionId": 561
}

Newly Inactive Strike: Stericycle

{
"Employer": "Stericycle",
"Labor Organization": "Teamsters (IBT)",
"Local": "377; 20",
"Industry": "Administrative and Support and Waste Management",
"Bargaining Unit Size": "",
"Number of Locations": "2",
"Address": "1901 Pine Ave SE; 1301 East Alexis Road",
"City": "Warren; Toledo",
"State": "Ohio; Ohio",
"Zip Code": "44483; 43612",
"Latitude, Longitude": "41.221696, -80.80433099999999;41.72407690000001, -83.5175309;",
"Approximate Number of Participants": "80",
"Start Date": "2021-10-13",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Healthcare",
"Source": "https://www.13abc.com/2021/10/13/stericycle-workers-picket-over-health-plan-change/; https://www.wfmj.com/story/44953894/teamsters-strike-warren-medical-waste-disposal-company; https://www.wkbn.com/news/local-news/workers-at-youngstown-medical-waste-management-company-on-strike/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 566
}

Newly Active Strike: Gary Merlino Construction

{
"Employer": "Gary Merlino Construction",
"Labor Organization": "Teamsters (IBT)",
"Local": "174",
"Industry": "Construction",
"Bargaining Unit Size": "34",
"Number of Locations": "1",
"Address": "9125 10th Ave S",
"City": "Seattle",
"State": "Washington",
"Zip Code": "98108",
"Latitude, Longitude": "47.5213695, -122.3217415",
"Approximate Number of Participants": "",
"Start Date": "2021-11-19",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "",
"Source": "https://www.prnewswire.com/news-releases/teamsters-local-174-on-unfair-labor-practice-strike-at-gary-merlino-construction-301430076.html; https://teamsters174.net/teamsters-local-174-strike-at-gary-merlino-construction-enters-fifth-day/?fbclid=IwAR2o3V-eXUnERIwg5Bzk3HSSFR_d9-amTm2gXZGnzACaYm6PYifcELsTE4s; https://www.bloomberglaw.com/product/labor/document/XBSTHMQK000000?criteria_id=c9a106fe50edfd2abd72b09bcee4fa3e&searchGuid=3d23672a-c32f-4f7f-9835-2b08f95a0be5",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "This action involves striking workers from multiple locations not listed here. We instead list the employer's main address. Several workers from other unions also participated in sympathy action with striking workers.",
"positionId": 689
}

Newly Inactive Strike: Henry Frerk Sons

{
"Employer": "Henry Frerk Sons",
"Labor Organization": "Teamsters (IBT)",
"Local": "786",
"Industry": "Retail Trade",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "3135 W Belmont Ave",
"City": "Chicago",
"State": "Illinois",
"Zip Code": "60618",
"Latitude, Longitude": "41.9391082, -87.70540729999999",
"Approximate Number of Participants": "12",
"Start Date": "2021-08-02",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "",
"Source": "https://m-partners.facebook.com/story.php?story_fbid=10158100890581674&id=14440196673; https://www.facebook.com/HenryFrerkAndSons/posts/4309002215824081; https://teamster.org/teamsters-line/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 444
}

Newly Inactive Strike: Cumberland County Schools

{
"Employer": "Cumberland County Schools",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "2465 Gillespie St",
"City": "Fayetteville",
"State": "North Carolina",
"Zip Code": "28306",
"Latitude, Longitude": "35.0142329, -78.8963629",
"Approximate Number of Participants": "40",
"Start Date": "2021-11-09",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay, Staffing",
"Source": "https://www.wral.com/dozens-of-cumberland-county-school-bus-drivers-rally-to-demand-better-pay/19968878/; https://abc11.com/bus-driver-strike-cumberland-county-protest-schools-fayetteville/11215062/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 634
}

Newly Inactive Strike: Berkeley County School District

{
"Employer": "Berkeley County School District",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "229 E Main St",
"City": "Moncks Corner",
"State": "South Carolina",
"Zip Code": "29461",
"Latitude, Longitude": "33.1935128, -80.00795649999999",
"Approximate Number of Participants": "30",
"Start Date": "2021-11-12",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "COVID-19 protocols, Health and safety, Staffing",
"Source": "https://www.live5news.com/2021/11/13/berkeley-co-school-bus-drivers-go-strike-demand-equal-treatment-better-working-conditions/; https://twitter.com/ReyLlerenaTV/status/1459254332440854533",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 647
}

Newly Active Strike: Alfred-Almond Central School District

{
"Employer": "Alfred-Almond Central School District",
"Labor Organization": "CSEA - AFSCME",
"Local": "1000",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "6795 Rt 21",
"City": "Almond",
"State": "New York",
"Zip Code": "14804",
"Latitude, Longitude": "42.2947949, -77.7542272",
"Approximate Number of Participants": "7",
"Start Date": "2021-01-05",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "N",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://www.weny.com/story/45591835/citing-unfair-working-conditions-7-out-of-9-alfred-almond-bus-drivers-hold-sick-out; https://wellsvillesun.com/blog/2022/01/05/alfred-almond-bus-driver-speaks-out-after-seven-drivers-cause-school-to-be-canceled/?fbclid=IwAR3Z9-wlo_FsTDCdrLBuE1aOUovrjH1ZdMPy1eqFTA2-tGZDtCN1mHiGe_w",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 739
}

Newly Inactive Strike: The University of Texas at Austin

{
"Employer": "The University of Texas at Austin",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "110 Inner Campus Drive",
"City": "Austin",
"State": "Texas",
"Zip Code": "78705",
"Latitude, Longitude": "30.2861062, -97.7393634",
"Approximate Number of Participants": "56",
"Start Date": "2021-05-01",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Racial justice",
"Source": "https://www.texastribune.org/2021/05/04/eyes-of-texas-ut-austin/?utm_campaign=trib-social-buttons&utm_source=twitter&utm_medium=social; https://cbsaustin.com/news/local/ut-student-tour-guides-go-on-strike-as-the-eyes-of-texas-controversy-intensifies",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 210
}

Notify users when part of a URL matches an organization whose employees are on strike

This feature request comes from a DM on Reddit, where a user noted that only notifying them when they visit a site like kelloggs.com that employees at Kellogg's are on strike isn't very useful because they're not going to find themselves on that site very often, and that reading the URL of the page for keywords (like "kellogg") might be more useful to, for example, notify a user about the Kellogg's strike if they're about to purchase a Kellogg's product from an online retailer.

I can definitely see in situations where the organization isn't so direct-to-consumer, e.g. wirecutter.com, why this might be more useful in getting the word out more about any strikes that are going on. The primary risk I see in implementing this is that we might generate some false positives, where we think we've found a URL that's relevant to a given strike but it actually isn't, which might encourage folks to stop using the browser extension all together if they're hit with spammy notifications too many times. To that end, we may want to consider explicitly whitelisting which domain names trigger these new class of notifications, e.g. only when you're on amazon.com, target.com, etc.; if we don't do this, we risk popping up a notification on news sites that mention Kellogg's. There are apparently even services that could potentially be used to generate this list statically or in real time, e.g. this one.

I tentatively agree that this feature is worth adding as part of a future major release so long as we're careful in implementing it properly. Note that implementation would probably require adding more attributes to each strike in data/strikes.json, e.g. a separate array of regular expressions that represent keywords to match on.

Newly Active Strike: West Contra Costa Unified School District

{
"Employer": "West Contra Costa Unified School District",
"Labor Organization": "California Teachers Association - NEA",
"Local": "United Teachers of Richmond",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "2",
"Address": "7125 Donal Ave; 4949 Cypress Ave",
"City": "El Cerrito; Richmond",
"State": "California; California",
"Zip Code": "94530; 94804",
"Latitude, Longitude": "37.9207753, -122.3058353;37.9199941, -122.3229308;",
"Approximate Number of Participants": "16",
"Start Date": "2022-01-11",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "N",
"Threat": "",
"Worker Demands": "COVID-19 protocols, Health and safety",
"Source": "https://edsource.org/updates/teachers-at-west-contra-costa-unified-plan-sick-out-protests-throughout-the-week; https://edsource.org/updates/teacher-sick-outs-continue-wednesday-at-west-contra-costa-unified",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 753
}

Newly Inactive Strike: Bojangles

{
"Employer": "Bojangles",
"Labor Organization": "Fight for 15 - SEIU",
"Local": "NC Raise Up",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "606 W US Hwy 19 E",
"City": "Burnsville",
"State": "North Carolina",
"Zip Code": "28714",
"Latitude, Longitude": "35.9147045, -82.3074134",
"Approximate Number of Participants": "",
"Start Date": "2021-11-23",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "COVID-19 protocols, Health and safety, End to retaliation",
"Source": "https://twitter.com/RaiseUpfor15/status/1463224745843961871; https://twitter.com/fightfor15/status/1463526621747585035",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 679
}

Newly Active Strike: Gary Merlino Construction; Stoneway Concrete; Cadman, CalPortland, Lehigh Cement; Salmon Bay Sand & Gravel

{
"Employer": "Gary Merlino Construction; Stoneway Concrete; Cadman, CalPortland, Lehigh Cement; Salmon Bay Sand & Gravel",
"Labor Organization": "Teamsters (IBT)",
"Local": "174",
"Industry": "Construction",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "9125 10th Ave S",
"City": "Seattle",
"State": "Washington",
"Zip Code": "98108",
"Latitude, Longitude": "47.5213695, -122.3217415",
"Approximate Number of Participants": "330",
"Start Date": "2021-11-19",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, Fair scheduling",
"Source": "https://www.prnewswire.com/news-releases/teamsters-local-174-on-unfair-labor-practice-strike-at-gary-merlino-construction-301430076.html; https://newsnationusa.com/news/finance/banking/concrete-teamsters-begin-industry-wide-work-stoppage/; https://www.rentonreporter.com/news/teamsters-174-members-strike-stopping-the-flow-of-concrete-in-the-region/; https://www.facebook.com/TeamstersLocal174/posts/2023587907817658",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "Workers at Gary Merlino began striking on November 19th, 2021. Workers at Stoneway Concrete began striking on December 1st, 2021. Workers at all other employers began striking on December 3rd, 2021. This action involves striking workers from multiple locations not listed here. We instead list the main address of one employer. Several workers from other unions also participated in sympathy action with striking workers.",
"positionId": 690
}

Newly Inactive Strike: Chipotle Mexican Grill

{
"Employer": "Chipotle Mexican Grill",
"Labor Organization": "Service Employees International Union (SEIU)",
"Local": "32BJ",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "9015 Queens Blvd",
"City": "Elmhurst",
"State": "New York",
"Zip Code": "11373",
"Latitude, Longitude": "40.7345859, -73.8704509",
"Approximate Number of Participants": "",
"Start Date": "2021-10-01",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://www.amny.com/news/exclusive-chipotle-workers-walkout-in-queens-after-company-refuses-to-pay-during-hurricane-ida-closure/; https://ny.eater.com/2021/10/1/22702488/nyc-chipotle-workers-strike-walk-out-pay-hurricane-ida",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 536
}

Newly Inactive Strike: Daily Hampshire Gazette - Newspapers of New England

{
"Employer": "Daily Hampshire Gazette - Newspapers of New England",
"Labor Organization": "Pioneer Valley News Guild - CWA",
"Local": "",
"Industry": "Information",
"Bargaining Unit Size": "12",
"Number of Locations": "1",
"Address": "115 Conz St",
"City": "Northampton",
"State": "Massachusetts",
"Zip Code": "01060",
"Latitude, Longitude": "42.3119782, -72.6265741",
"Approximate Number of Participants": "",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Job Security",
"Source": "https://www.nepm.org/post/daily-hampshire-gazette-columnists-strike-support-papers-union#stream/0; https://www.wwlp.com/news/local-news/hampshire-county/daily-hampshire-gazette-column-writers-join-strike-against-newspaper-owners/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 703
}

Newly Active Strike: ABARTA Coca-Cola Beverages

{
"Employer": "ABARTA Coca-Cola Beverages ",
"Labor Organization": "Teamsters (IBT)",
"Local": "773",
"Industry": "Manufacturing, Transportation and Warehousing",
"Bargaining Unit Size": "77",
"Number of Locations": "1",
"Address": "2150 Industrial Dr",
"City": "Bethlehem",
"State": "Pennsylvania",
"Zip Code": "18017",
"Latitude, Longitude": "40.6506957, -75.419086",
"Approximate Number of Participants": "",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Healthcare, Retirement benefits",
"Source": "https://www.lehighvalleylive.com/business/2021/12/soda-strike-coca-cola-workers-picket-at-bethlehem-plant-over-pension-health-care.html; https://www.mcall.com/news/breaking/mc-nws-coca-cola-bottling-workers-strike-20211207-xaflsp3zgzflfe6swrykh5jwsy-story.html",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 701
}

Newly Inactive Strike: Erie Strayer Company

{
"Employer": "Erie Strayer Company",
"Labor Organization": "Ironworkers",
"Local": "851",
"Industry": "Manufacturing",
"Bargaining Unit Size": "42",
"Number of Locations": "1",
"Address": "1851 Rudolph Ave",
"City": "Erie",
"State": "Pennsylvania",
"Zip Code": "16502",
"Latitude, Longitude": "42.1024115, -80.11904229999999",
"Approximate Number of Participants": "",
"Start Date": "2021-10-04",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare",
"Source": "https://www.goerie.com/story/news/local/2021/10/04/erie-strayers-unionized-workers-walk-off-job-over-wages-heath-care/5990476001/; https://www.goerie.com/story/news/local/2021/10/04/erie-strayers-unionized-workers-walk-off-job-over-wages-heath-care/5990476001/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 541
}

Newly Inactive Strike: Keolis North America - Regional Transportation Commission Washoe

{
"Employer": "Keolis North America - Regional Transportation Commission Washoe",
"Labor Organization": "Teamsters (IBT)",
"Local": "533",
"Industry": "Transportation and Warehousing",
"Bargaining Unit Size": "200",
"Number of Locations": "1",
"Address": "2050 Villanova Drive",
"City": "Reno",
"State": "Nevada",
"Zip Code": "89502",
"Latitude, Longitude": "39.5085278, -119.7806253",
"Approximate Number of Participants": "",
"Start Date": "2021-11-09",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://www.ktvn.com/story/45151703/possible-third-rtc-bus-strike-looms-after-union-vote-on-monday; https://www.rgj.com/story/news/money/business/2021/11/09/strike-third-bus-strike-reno-union-votes-down-keolis-cba-offer/6355896001/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 637
}

Newly Inactive Strike: Baltimore County Public Schools

{
"Employer": "Baltimore County Public Schools",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "6901 Charles Street",
"City": "Towson",
"State": "Maryland",
"Zip Code": "21204",
"Latitude, Longitude": "39.4040274, -76.6302082",
"Approximate Number of Participants": "80",
"Start Date": "2021-11-12",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://foxbaltimore.com/news/local/dozens-of-bus-drivers-call-out-from-work-at-baltimore-county-public-schools; https://baltimore.cbslocal.com/2021/11/15/dozens-of-baltimore-county-school-bus-drivers-call-in-sick/; https://baltimore.cbslocal.com/video/6159280-baltimore-county-school-bus-drivers-back-behind-the-wheel-after-sick-out/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 652
}

Newly Inactive Strike: Cabell Huntington Hospital - Mountain Health Network

{
"Employer": "Cabell Huntington Hospital - Mountain Health Network",
"Labor Organization": "Service Employees International Union (SEIU)",
"Local": "1199 WKO",
"Industry": "Health Care and Social Assistance",
"Bargaining Unit Size": "1000",
"Number of Locations": "1",
"Address": "1340 Hal Greer Boulevard",
"City": "Huntington",
"State": "West Virginia",
"Zip Code": "25701",
"Latitude, Longitude": "38.40958699999999, -82.427083",
"Approximate Number of Participants": "",
"Start Date": "2021-11-03",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "Y",
"Worker Demands": "Pay, Healthcare, Staffing",
"Source": "https://www.wowktv.com/news/local/cabell-huntington-hospital-workers-walk-out-as-strike-begins/; https://www.wsaz.com/video/2021/11/03/union-workers-strike-cabell-huntington-hospital-hospital-announces-normal-operations/; https://wchstv.com/news/local/cabell-huntington-hospital-issues-statement-as-hundreds-of-workers-begin-strike; https://www.wsaz.com/2021/11/03/cabell-huntington-hospital-releases-statement-about-rejection-contract-offer/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 618
}

Newly Active Strike: Shred it - Stericycle

{
"Employer": "Shred it - Stericycle",
"Labor Organization": "Teamsters (IBT)",
"Local": "469",
"Industry": "Administrative and Support and Waste Management",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "649 Whitehead Rd",
"City": "Lawrenceville",
"State": "New Jersey",
"Zip Code": "08649",
"Latitude, Longitude": "40.2493544, -74.7308721",
"Approximate Number of Participants": "",
"Start Date": "2021-12-20",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "First contract",
"Source": "https://www.prnewswire.com/news-releases/new-jersey-teamsters-strike-shred-it-301448540.html; https://www.tapinto.net/towns/hamilton-slash-robbinsville/sections/business-and-finance/articles/mercer-county-truck-drivers-go-on-strike-against-unfair-working-conditions",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 724
}

Newly Active Strike: Acme Food & Beverage Company

{
"Employer": "Acme Food & Beverage Company",
"Labor Organization": "",
"Local": "",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "110 E Main St",
"City": "Carrboro",
"State": "North Carolina",
"Zip Code": "27510",
"Latitude, Longitude": "35.9103313, -79.0709265",
"Approximate Number of Participants": "",
"Start Date": "2021-11-26",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Racial justice, End to sexual misconduct; Appointment of HR officer",
"Source": "https://chapelboro.com/news/business/acme-closed-to-dine-in-workers-on-strike; https://www.gofundme.com/f/support-acme-staff-on-strike?utm_source=customer&utm_medium=copy_link_all&utm_campaign=m_pd+share-sheet",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 717
}

Newly Active Strike: San Francisco Unified School District

{
"Employer": "San Francisco Unified School District",
"Labor Organization": "California Federation of Teachers - AFT; California Teachers Association - NEA",
"Local": "United Educators of San Francisco",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "135 Van Ness Ave",
"City": "San Francisco",
"State": "California",
"Zip Code": "94102",
"Latitude, Longitude": "37.7768135, -122.4199298",
"Approximate Number of Participants": "250",
"Start Date": "2021-01-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "N",
"Threat": "",
"Worker Demands": "COVID-19 protocols, Health and safety",
"Source": "https://sfstandard.com/education/amid-staff-test-and-mask-shortages-teacher-group-plans-sick-out/; https://www.kron4.com/news/bay-area/some-san-francisco-teachers-stage-sickout-for-covid-safety/; https://abc7news.com/sfusd-school-closure-news-sf-district/11435023/",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "This action involves striking workers from multiple locations not listed here. We instead list the employer's main address.",
"positionId": 743
}

Newly Inactive Strike: Wirecutter - The New York Times

{
"Employer": "Wirecutter - The New York Times",
"Labor Organization": "Wirecutter Union - NewsGuild - CWA",
"Local": "31003",
"Industry": "Information",
"Bargaining Unit Size": "65",
"Number of Locations": "1",
"Address": "620 8th Ave",
"City": "New York",
"State": "New York",
"Zip Code": "10018",
"Latitude, Longitude": "40.756105, -73.9901921",
"Approximate Number of Participants": "",
"Start Date": "2021-11-25",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, First contract",
"Source": "https://www.businessinsider.com/nyt-wirecutter-strike-black-friday-cyber-monday-2021-11; https://gizmodo.com/dont-cross-the-wirecutter-picket-line-1848112947",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 679
}

Newly Inactive Strike: Wake County Public School System

{
"Employer": "Wake County Public School System",
"Labor Organization": "North Carolina Association of Educators - NEA",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "5625 Dillard Drive",
"City": "Cary",
"State": "North Carolina",
"Zip Code": "27518",
"Latitude, Longitude": "35.7540291, -78.73658449999999",
"Approximate Number of Participants": "",
"Start Date": "2021-11-16",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "N",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://www.heraldsun.com/news/local/education/article255852406.html; https://abc11.com/wake-county-school-board-bonuses-strike/11244433/; https://www.wral.com/wake-school-leaders-warn-cafeteria-worker-sick-out-could-continue-impacting-schools-on-wednesday/19985569/",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "This action includes striking workers from multiple locations not listed here. We instead list the main address of the employer.",
"positionId": 653
}

Newly Inactive Strike: BuzzFeed News

{
"Employer": "BuzzFeed News",
"Labor Organization": "The NewsGuild - CWA",
"Local": "31003",
"Industry": "Information",
"Bargaining Unit Size": "61",
"Number of Locations": "1",
"Address": "111 E 18th St",
"City": "New York",
"State": "New York",
"Zip Code": "10003",
"Latitude, Longitude": "40.737025, -73.9877829",
"Approximate Number of Participants": "",
"Start Date": "2021-12-02",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, First contract",
"Source": "https://newsguild.org/buzzfeed-news-union-members-walk-out-demanding-a-fair-contract-on-the-day-shareholders-take-the-company-public/; https://www.nytimes.com/2021/12/02/business/media/buzzfeed-walkout-union.html",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 691
}

Newly Inactive Strike: Tuskegee University

{
"Employer": "Tuskegee University",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "1200 W Montgomery Rd",
"City": "Tuskegee",
"State": "Alabama",
"Zip Code": "36088",
"Latitude, Longitude": "32.4307718, -85.7073589",
"Approximate Number of Participants": "45",
"Start Date": "2021-10-23",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay, New leadership; Increased funding",
"Source": "https://twitter.com/TuskegeeUnivSGA/status/1451942514181746694; https://www.insidehighered.com/quicktakes/2021/11/02/tuskegee-university-marching-band-strike; https://thegrio.com/2021/11/04/tuskegee-band-director-replaced-refuses-to-perform/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 660
}

Newly Inactive Strike: Fleishers Craft Butchery

{
"Employer": "Fleishers Craft Butchery",
"Labor Organization": "",
"Local": "",
"Industry": "Retail Trade",
"Bargaining Unit Size": "",
"Number of Locations": "4",
"Address": "1325 3rd Ave; 192 5th Avenue; 160 E. Putnam Ave; 580 Riverside Ave",
"City": "New York; Brooklyn; Cos Cob; Westport",
"State": "New York; New York; Connecticut; Connecticut",
"Zip Code": "10021; 11217; 06807; 06880",
"Latitude, Longitude": "40.7720919, -73.9585961;40.6769914, -73.9803118;41.0380353, -73.6003351;41.1216144, -73.3706644;",
"Approximate Number of Participants": "15",
"Start Date": "2021-07-23",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Racial justice",
"Source": "https://ny.eater.com/2021/8/4/22598824/fleishers-craft-butchery-staff-walkout-park-slope-westport-connecticut?fbclid=IwAR32H_ZfXoNkUH8vbIBuinrQ8cVL-efrqM5VxQT6Lv7_86lqaalb4wYJ2k0; https://www.greenwichtime.com/local/article/Fleishers-Craft-Butchery-employees-walk-out-after-16375558.php; https://commercialobserver.com/2021/08/developer-faces-backlash-after-ordering-fleishers-to-remove-blm-signs/; https://www.forbes.com/sites/chloesorvino/2021/08/04/nyc-rock-star-butcher-shutters-as-staff-walks-over-removal-of-blm-pride-signs/?sh=5bafe5223749",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 416
}

Newly Inactive Strike: Gary Merlino Construction

{
"Employer": "Gary Merlino Construction",
"Labor Organization": "Teamsters (IBT)",
"Local": "174",
"Industry": "Construction",
"Bargaining Unit Size": "34",
"Number of Locations": "1",
"Address": "9125 10th Ave S",
"City": "Seattle",
"State": "Washington",
"Zip Code": "98108",
"Latitude, Longitude": "47.5213695, -122.3217415",
"Approximate Number of Participants": "",
"Start Date": "2021-11-19",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Healthcare, Fair scheduling",
"Source": "https://www.prnewswire.com/news-releases/teamsters-local-174-on-unfair-labor-practice-strike-at-gary-merlino-construction-301430076.html; https://teamsters174.net/gary-merlino-strike-continues-despite-approach-of-christmas-holiday/; https://www.bloomberglaw.com/product/labor/document/XBSTHMQK000000?criteria_id=c9a106fe50edfd2abd72b09bcee4fa3e&searchGuid=3d23672a-c32f-4f7f-9835-2b08f95a0be5",
"Comments or Remarks": "",
"Display": "Y",
"Notes": "This action involves striking workers from multiple locations not listed here. We instead list the employer's main address. Several workers from other unions also participated in sympathy action with striking workers.",
"positionId": 690
}

Newly Active Strike: McKenzie-Willamette Medical Center

{
"Employer": "McKenzie-Willamette Medical Center",
"Labor Organization": "Service Employees International Union (SEIU)",
"Local": "49",
"Industry": "Health Care and Social Assistance",
"Bargaining Unit Size": "325",
"Number of Locations": "1",
"Address": "1460 G St",
"City": "Springfield",
"State": "Oregon",
"Zip Code": "97477",
"Latitude, Longitude": "44.0532993, -123.0036858",
"Approximate Number of Participants": "",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, COVID-19 protocols, Health and safety, Staffing, Job Security",
"Source": "https://www.eugeneweekly.com/2021/12/07/local-hospital-workers-back-on-strike/; https://www.registerguard.com/story/news/2021/12/06/mckenzie-willamette-hospital-springfield-workers-strike-over-safety-concerns-pay/6405582001/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 702
}

Newly Inactive Strike: KONE

{
"Employer": "KONE",
"Labor Organization": "The International Association of Machinists and Aerospace Workers (IAM)",
"Local": "1191",
"Industry": "Manufacturing",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "2266 US-6",
"City": "Coal Valley",
"State": "Illinois",
"Zip Code": "61240",
"Latitude, Longitude": "41.457424, -90.39082909999999",
"Approximate Number of Participants": "24",
"Start Date": "2021-09-20",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Retirement benefits",
"Source": "https://www.kwqc.com/2021/09/20/employees-form-picket-line-outside-kone-facility-in-coal-valley/; https://www.wqad.com/article/news/local/kone-strike-union/526-3979ef97-0880-4af1-acb3-b4d9e6e4fce3; https://www.bloomberglaw.com/product/labor/document/X7G0GLC0000000?criteria_id=c9a106fe50edfd2abd72b09bcee4fa3e&searchGuid=2f9aa0f9-7f50-4d0e-a2bd-5db19c10f674",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 520
}

Newly Inactive Strike: Jack in the Box

{
"Employer": "Jack in the Box",
"Labor Organization": "Fight for 15 - SEIU",
"Local": "Fight for 15 Nor Cal",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "4849 Madison Ave",
"City": "Sacramento",
"State": "California",
"Zip Code": "95841",
"Latitude, Longitude": "38.66122, -121.3509355",
"Approximate Number of Participants": "",
"Start Date": "2021-08-04",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://twitter.com/NorCalFF15/status/1423319884528709635; https://fox40.com/news/local-news/north-highlands-jack-in-the-box-workers-go-on-strike-claiming-184k-due-in-back-pay/amp/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 405
}

Newly Active Strike: Chesterfield County School District

{
"Employer": "Chesterfield County School District",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "200 State Rd S-13-135",
"City": "Pageland",
"State": "South Carolina",
"Zip Code": "29728",
"Latitude, Longitude": "34.7543468, -80.3569899",
"Approximate Number of Participants": "18",
"Start Date": "2021-12-13",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay, Staffing",
"Source": "https://www.wbtv.com/2021/12/13/overworked-underpaid-chesterfield-county-bus-drivers-strike-over-long-hours-low-wages/; https://www.wsoctv.com/news/local/chesterfield-county-bus-drivers-express-concerns-about-driver-shortage-low-pay/DRQTDLHB3FFPVP6MGG4LS3AG7E/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 713
}

Newly Inactive Strike: Dianne Morales for NYC Mayor

{
"Employer": "Dianne Morales for NYC Mayor",
"Labor Organization": "Mayorales Union",
"Local": "",
"Industry": "Other Services (except Public Administration)",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "49 W 38th Street",
"City": "New York",
"State": "New York",
"Zip Code": "10018",
"Latitude, Longitude": "40.7521614, -73.9848854",
"Approximate Number of Participants": "45",
"sdf": "5/27/2021",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay, Racial justice, Union recognition; End to sexual harassment",
"Source": "https://pix11.com/news/new-york-elections/morales-staffers-demand-better-working-conditions-amid-work-stoppage/; https://twitter.com/mayoralesunion/status/1398037672019496966; https://gothamist.com/news/dissent-threatens-implode-dianne-moraless-mayoral-campaign; https://www.nydailynews.com/news/politics/nyc-elections-2021/ny-nyc-mayoral-candidate-dianne-morales-fires-staff-20210609-35bhw2b63jdmnjn2eqvtst6cgy-story.html",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 266,
"Start Date": ""
}

Newly Inactive Strike: Stanly County Schools

{
"Employer": "Stanly County Schools",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "1000-4 N First Street",
"City": "Albemarle",
"State": "North Carolina",
"Zip Code": "28001",
"Latitude, Longitude": "35.3662048, -80.1961737",
"Approximate Number of Participants": "",
"Start Date": "2021-11-01",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://www.wsoctv.com/news/local/dont-make-enough-money-stanly-county-school-bus-drivers-sit-out-protest-higher-wages/MCQVVZKSENH4PINMBE4SEAV25A/; https://www.wcnc.com/article/news/education/stanly-county-bus-drivers-push-better-pay-ahead-of-school-board-meeting/275-18780434-8ee1-4f67-bd06-2459e4ef7840; https://www.thesnaponline.com/2021/11/03/bus-drivers-address-school-board-decide-to-continue-protest/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 651
}

Newly Inactive Strike: HMSHost - Phoenix Sky Harbor International Airport

{
"Employer": "HMSHost - Phoenix Sky Harbor International Airport",
"Labor Organization": "UNITE HERE",
"Local": "11",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "3251 E Sky Harbor Blvd",
"City": "Phoenix",
"State": "Arizona",
"Zip Code": "85034",
"Latitude, Longitude": "33.4347199, -112.0101519",
"Approximate Number of Participants": "100",
"Start Date": "2021-11-22",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, Retirement benefits; Protection against discrimination",
"Source": "https://www.azcentral.com/story/news/local/phoenix-breaking/2021/11/22/concession-workers-begin-strike-monday-sky-harbor-airport/8715206002/; https://www.usnews.com/news/best-states/arizona/articles/2021-11-22/phoenix-airport-restaurant-coffee-shop-workers-go-on-strike; https://www.bloomberglaw.com/product/labor/document/XCBU57EC000000?criteria_id=c9a106fe50edfd2abd72b09bcee4fa3e&searchGuid=360d5091-c79e-4ebe-9b7d-5e031b4f7807",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 678
}

Newly Active Strike: Nefarious Film LLC

{
"Employer": "Nefarious Film LLC",
"Labor Organization": "International Alliance of Theatrical Stage Employees (IATSE)",
"Local": "",
"Industry": "Arts, Entertainment and Recreation",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "1 Myriad Gardens",
"City": "Oklahoma City",
"State": "Oklahoma",
"Zip Code": "73102",
"Latitude, Longitude": "35.46533110000001, -97.51790729999999",
"Approximate Number of Participants": "40",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Union recognition",
"Source": "https://www.news9.com/story/61afad1b012bce0bd95dbaee/film-crew-for-nefarious-film-llc-goes-on-strike-in-okc; https://twitter.com/IATSE/status/1467881361746939909",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 702
}

Newly Active Strike: BuzzFeed News

{
"Employer": "BuzzFeed News",
"Labor Organization": "The NewsGuild - CWA",
"Local": "31003",
"Industry": "Information",
"Bargaining Unit Size": "61",
"Number of Locations": "1",
"Address": "111 E 18th St",
"City": "New York",
"State": "New York",
"Zip Code": "10003",
"Latitude, Longitude": "40.737025, -73.9877829",
"Approximate Number of Participants": "",
"Start Date": "2021-12-02",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, First contract",
"Source": "https://newsguild.org/buzzfeed-news-union-members-walk-out-demanding-a-fair-contract-on-the-day-shareholders-take-the-company-public/; https://www.nytimes.com/2021/12/02/business/media/buzzfeed-walkout-union.html",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 691
}

Newly Inactive Strike: Kellogg's

{
"Employer": "Kellogg's",
"Labor Organization": "Bakery, Confectionery, Tobacco and Grain Millers Union (BCTGM)",
"Local": "3G; 374G; 50G; 252G",
"Industry": "Manufacturing",
"Bargaining Unit Size": "1400",
"Number of Locations": "4",
"Address": "2168 Frisco Ave; 9601 F St; 2050 State Rd; 425 Porter St",
"City": "Memphis; Omaha; Lancaster; Battle Creek",
"State": "Tennessee; Nebraska; Pennsylvania; Michigan",
"Zip Code": "38114; 68127; 17601; 49014",
"Latitude, Longitude": "35.0955851, -89.9903819;41.2178548, -96.0665956;40.0880939, -76.38434769999999;42.31824700000001, -85.15110899999999;",
"Approximate Number of Participants": "",
"Start Date": "2021-10-05",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Healthcare, Retirement benefits; Maintain paid time off",
"Source": "https://wwmt.com/news/local/kelloggs-workers-at-battle-creek-plant-to-strike; https://www.wreg.com/news/local/kelloggs-workers-go-on-strike-tuesday/; https://www.ketv.com/article/omaha-kelloggs-plant-workers-walk-out-on-strike/37866113; https://www.wgal.com/article/workers-strike-landisville-pennsylvania-kelloggs-plant/37866898; https://www.fox17online.com/news/local-news/kellogg-co-employees-begin-strike-at-midnight; https://jacobinmag.com/2021/10/kellogg-cereal-strike-bctgm-two-tier-labor; https://www.bloomberglaw.com/product/labor/search/results/c9a106fe50edfd2abd72b09bcee4fa3e?utm_source=ANT&utm_medium=ANP",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 545
}

Newly Active Strike: Daily Hampshire Gazette - Newspapers of New England

{
"Employer": "Daily Hampshire Gazette - Newspapers of New England",
"Labor Organization": "Pioneer Valley News Guild - CWA",
"Local": "",
"Industry": "Information",
"Bargaining Unit Size": "12",
"Number of Locations": "1",
"Address": "115 Conz St",
"City": "Northampton",
"State": "Massachusetts",
"Zip Code": "01060",
"Latitude, Longitude": "42.3119782, -72.6265741",
"Approximate Number of Participants": "",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "Y",
"Threat": "",
"Worker Demands": "Pay, Job Security",
"Source": "https://www.nepm.org/post/daily-hampshire-gazette-columnists-strike-support-papers-union#stream/0; https://www.wwlp.com/news/local-news/hampshire-county/daily-hampshire-gazette-column-writers-join-strike-against-newspaper-owners/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 703
}

Newly Active Strike: Portland Pie Company

{
"Employer": "Portland Pie Company",
"Labor Organization": "",
"Local": "",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "51 York St",
"City": "Portland",
"State": "Maine",
"Zip Code": "04101",
"Latitude, Longitude": "43.65300130000001, -70.2576059",
"Approximate Number of Participants": "9",
"Start Date": "2021-01-02",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "COVID-19 protocols, Health and safety, Staffing",
"Source": "https://bangordailynews.com/2022/01/03/news/portland-pizzeria-workers-walk-out-in-protest-of-lax-covid-19-safety/; https://www.pressherald.com/2022/01/03/portland-pie-co-workers-walk-out-in-protest/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 737
}

Newly Active Strike: Starbucks

{
"Employer": "Starbucks",
"Labor Organization": "Workers United - SEIU",
"Local": "Starbucks Workers United",
"Industry": "Accommodation and Food Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "933 Elmwood Ave, Buffalo, NY 14222",
"City": "Buffalo",
"State": "New York",
"Zip Code": "14222",
"Latitude, Longitude": "42.9225955, -78.8766785",
"Approximate Number of Participants": "6",
"Start Date": "2021-01-05",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "COVID-19 protocols, Health and safety, Staffing",
"Source": "https://www.wivb.com/news/local-news/buffalo/workers-at-nations-first-unionized-starbucks-in-buffalo-walk-off-the-job-due-to-unsafe-working-conditions/; https://www.npr.org/sections/coronavirus-live-updates/2022/01/05/1070711691/starbucks-union-buffalo-walkout; https://twitter.com/SBWorkersUnited/status/1478741517653221381",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 738
}

Newly Inactive Strike: Bullitt County Public Schools

{
"Employer": "Bullitt County Public Schools",
"Labor Organization": "",
"Local": "",
"Industry": "Educational Services",
"Bargaining Unit Size": "",
"Number of Locations": "1",
"Address": "1040 KY-44",
"City": "Shepherdsville",
"State": "Kentucky",
"Zip Code": "40165",
"Latitude, Longitude": "37.9961056, -85.7023184",
"Approximate Number of Participants": "30",
"Start Date": "2021-10-12",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Pay",
"Source": "https://www.wlky.com/article/30-bullitt-county-bus-drivers-call-out-sick-amid-protests-for-better-wages/37936767#; https://www.whas11.com/article/news/local/bullitt-county-bus-routes-changes-canceled-tuesday/417-538d54be-8c19-43b9-a2fa-58c09cfaef2f",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 563
}

Newly Active Strike: Raven Software - Activision Blizzard

{
"Employer": "Raven Software - Activision Blizzard",
"Labor Organization": "Activision Blizzard Workers Alliance",
"Local": "",
"Industry": "Information",
"Bargaining Unit Size": "",
"Number of Locations": "3",
"Address": "1 Blizzard Way; 7656 Executive Dr; 9825 Spectrum Dr",
"City": "Irvine; Eden Prairie; Austin",
"State": "California; Minnesota; Texas",
"Zip Code": "92618; 55344; 78717",
"Latitude, Longitude": "33.6580674, -117.7671531;44.86470509999999, -93.45019549999999;30.4799791, -97.77367579999999;",
"Approximate Number of Participants": "200",
"Start Date": "2021-12-06",
"End Date": "",
"Duration Amount": "",
"Duration Unit": "",
"Strike or Protest": "Strike",
"Authorized": "",
"Threat": "",
"Worker Demands": "Job Security",
"Source": "https://www.washingtonpost.com/video-games/2021/12/06/raven-software-walkout/; https://www.pcgamer.com/activision-blizzard-qa-walkout-spreads-to-other-studios-in-its-second-day/",
"Comments or Remarks": "",
"Display": "Y",
"positionId": 700
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.